forked from csev/py4e
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav.php
More file actions
50 lines (45 loc) · 2 KB
/
nav.php
File metadata and controls
50 lines (45 loc) · 2 KB
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
<?php
function navto($arg)
{
$uri = isset($_ENV["REQUEST_URI"]) ? $_ENV["REQUEST_URI"] : $_SERVER["REQUEST_URI"];
echo ('href="' . $arg . '"');
if ( strpos($uri, $arg) ) echo ' class="selected" ';
}
?>
<div class="title-bar hide-for-large">
<div class="title-bar-left">
<h1 class="menu-text"><a href="index.php" rel="nofollow" accesskey=1>PythonLearn</a></h1>
</div>
<div class="title-bar-right">
<h1 id="menu-button" onclick="$('.mobile-menu').toggle()"><i class="fa fa-bars"></i></h1>
</div>
<div class="mobile-menu" style="display:none;">
<ul class="no-bullet text-center">
<li><a <?php navto("book.php") ?> >Book</a></li>
<li><a <?php navto("install.php") ?> >Install</a></li>
<li><a href=http://www.pr4e.org/ target="_blank">MOOC</a></li>
<li><a href="http://www.dr-chuck.com/" target="_blank">Instructor</a></li>
<li><a href="http://www.python.org/" target="_blank">Python</a></li>
<li><a <?php navto("about2.php") ?> >About</a></li>
</ul>
</div>
</div>
<div class="top-bar show-for-large">
<div class="top-bar-left">
<ul class="menu">
<li class="menu-text">
<a href="index.php" rel="nofollow" accesskey=1>PythonLearn</a>
</li>
</ul>
</div>
<div class="top-bar-right">
<ul class="menu">
<li><a <?php navto("book.php") ?> >Book</a></li>
<li><a <?php navto("install.php") ?> >Install</a></li>
<li><a href=http://www.pr4e.org/ target="_blank">MOOC</a></li>
<li><a href="http://www.dr-chuck.com/" target="_blank">Instructor</a></li>
<li><a href="http://www.python.org/" target="_blank">Python</a></li>
<li><a <?php navto("about2.php") ?> >About</a></li>
</ul>
</div>
</div>