-
Notifications
You must be signed in to change notification settings - Fork 6
/
sourcemakeup.template.php
57 lines (46 loc) · 1.81 KB
/
sourcemakeup.template.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>sourceMakeup - File <?php echo $file; ?></title>
<meta name="viewport" content="width=1280, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<link rel="shortcut icon" type="image/x-icon" href="http://jquery-jkit.com/favicon.ico" />
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/jquery.jkit.1.1.29.min.js"></script>
<script src="js/sourcemakeup.js"></script>
<script type="text/javascript" src="libs/google-code-prettify/prettify.js"></script>
<link href="libs/google-code-prettify/prettify.css" type="text/css" rel="stylesheet" />
<link href="css/sourcemakeup.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="options" data-jkit="[tooltip:text=Show compiler instructions?]"><input type="checkbox" id="showinstructions" value="1"></div>
<div id="search" data-jkit="[filter:global=yes;by=text;affected=tr.docu;loader=#spinner]"><input class="jkit-filter" placeholder="search ..." type="text" value=""></div>
<div id="overview" data-jkit="[summary:what=headers;linked=yes;from=table.container;scope=all;style=select;indent=yes]"></div>
<table class="container" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th class="comment">
<select id="files">
<?php foreach($files as $f) : ?>
<?php if(conditions) { ?>
<option selected><?=$f?></option>
<?php } else { ?>
<option><?=$f?></option>
<?php } ?>
<?php endforeach; ?>
</select>Documentation
</th>
<th class="code">
Code
</th>
</tr>
</thead>
<tbody>
<?=$output?>
</tbody>
</table>
<div id="spinner"><img src="imgs/spinner.gif"></div>
</body>
</html>