-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu.php
executable file
·32 lines (29 loc) · 912 Bytes
/
menu.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
<?php
echo "V3.0.0 last build date: ".date ("Y-m-d H:i:s", filemtime('menu.php'))."<br>";
echo '
<a href="index.php" tooltip title="HOME" alt="HOME">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-home fa-stack-1x fa-inverse"></i>
</span>
</a>
<a href="javascript:history.go(0);" title="RELOAD" alt="RELOAD">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-refresh fa-stack-1x fa-inverse"></i>
</span>
</a>
<a href="buttons.php" title="MANUAL CONTROLS" alt="MAN CTRLS">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-th fa-stack-1x fa-inverse"></i>
</span>
</a>
<a href="errorlog.php" title="Errorlog" alt="Errorlog">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-exclamation-triangle fa-stack-1x fa-inverse"></i>
</span>
</a>
';
?>