-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-body.php
More file actions
24 lines (22 loc) · 858 Bytes
/
index-body.php
File metadata and controls
24 lines (22 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<body>
<!--[if lt IE 7]><p class=chromeframe>Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]-->
<header>
<div id="webtitle"> <a href="index.php"><h1><strong>Reshad</strong> Farid</h1></a> </div>
<nav role="navigation" class="navigation">
<?php
echo '
<ul>
'.$menu.'
</ul>
';
?>
</nav>
</header>
<div class="container" role="main">
<?php
// load the content
$page = isset($_GET['page']) ? $_GET['page'] : "main.php";
if( file_exists($page)) include($page);
else include("404.html");
?>
</div>