-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
92 lines (52 loc) · 1.5 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Towns shared</title>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.3/jquery-ui.min.js"></script>
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
<script>
var module={};
var global=window;
</script>
<script src="build/towns-shared.js"></script>
<link rel="stylesheet" href="style-samples.js.css" />
</head>
<body>
<?php
$pages = array_merge(
glob('samples/*.html')
,glob('samples/**/*.html')
//,array('documentation/index.html')
);
if(!isset($_GET['page'])){
$current_page=$pages[0];
}else
if(in_array($_GET['page'],$pages)!==false) {
$current_page = $_GET['page'];
}else{
$current_page = false;
}
?>
<nav>
<h1>Towns Shared</h1>
<ul><!--
<?php foreach($pages as $page){ ?>
--><a href="?page=<?=$page?>"><li <?=($page===$current_page?'class="selected"':'')?>><?=ucfirst(str_replace('-',' ',basename($page,'.html')))?></li></a><!--
<?php } ?>
--><a href="./documentation" target="_blank"><li>Documentation</li></a></ul>
</nav>
<!--<h1><?=$current_page?></h1>-->
<article>
<?php
if(!$current_page){
http_response_code(404);
echo('Not found :(');
}else{
include($current_page);
}
?>
</article>
</body>
</html>