-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
22 lines (22 loc) · 774 Bytes
/
header.php
File metadata and controls
22 lines (22 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div id="header">
<div id="headerTitles">
<h1><a href="#!"><?php echo $siteName?></a></h1>
<h2><?php echo $siteDesc;?></h2>
</div>
<div id="nav">
<?php echo $plNav;
/* Look at this to edit your own titles, the href is from your url bar when you scroll to the corresponding tilegroup, it's the part after the # with the # included. */?>
<a id="home" class="navItem" href="#&home">
<img src="img/icons/home.png"/><br />
HOME
</a>
<a id="my_images" class="navItem" href="#&some_images">
<img src="img/icons/download_s.png"/><br />
GAME
</a>
<a id="slideshows" class="navItem" href="#&slideshows">
<img src="img/icons/questionmark.png"/><br />
SOON
</a>
</div>
</div>