diff options
author | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-01-07 23:56:13 +0100 |
---|---|---|
committer | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-01-09 00:44:09 +0100 |
commit | a25aca329747cac77264847b29cb844a45c7a88f (patch) | |
tree | 6e55bafdf1618487c9a2ac2764498f51c1a45ce4 /html/includes/navbar.php | |
parent | e861eafbeae0560add7956530d76de6cc285be20 (diff) |
Basic styling and header/footer markup
Diffstat (limited to 'html/includes/navbar.php')
-rwxr-xr-x | html/includes/navbar.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/html/includes/navbar.php b/html/includes/navbar.php new file mode 100755 index 0000000..41b3055 --- /dev/null +++ b/html/includes/navbar.php @@ -0,0 +1,21 @@ +<div class="top">
+ <ul>
+ <li>
+ <a href="./" class="topmenulogo">
+ <img src="images/statslogo.gif" height="100%" alt="UTStats Logo">
+ </a>
+ </li>
+ <li>
+ <a href="./?p=recent" class="topmenu">Recent</a>
+ </li>
+ <li>
+ <a href="./?p=rank" class="topmenu">Rankings</a>
+ </li>
+ <li>
+ <a href="./?p=players" class="topmenu">Players</a>
+ </li>
+ <li>
+ <a href="./?p=watchlist" class="topmenu">Watchlist</a>
+ </li>
+ </ul>
+</div>
|