MS-Tropical/app/templates/header.php

42 lines
1.6 KiB
PHP
Raw Normal View History

2024-06-29 08:06:29 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stuff, Community, Fun | Mad Splash!</title>
<link rel="stylesheet" href="/assets/css/MadSplash_v3.css" type="text/css" />
<link rel="stylesheet" href="/assets/css/CustomFonts.css" type="text/css" />
2024-06-29 08:06:29 -05:00
<script src="/assets/scripts/latestTweet.js"></script>
2024-06-29 08:06:29 -05:00
</head>
<body id="index" class="home">
<?= render('supernav') ?>
2024-06-29 08:06:29 -05:00
<header>
<img class="Logo" src="/assets/images/Logos/LogoV7.png" alt="Mad Splash" title="Mad Splash!" />
2024-06-29 08:06:29 -05:00
<nav>
<ul>
<li><a class="navLink" href="/">Home</a></li>
<li><a class="navLink" href="/blog">Blog</a></li>
2024-06-29 08:06:29 -05:00
<li><a class="navLink" href="http://forums.madsplash.net/">Forums</a></li>
<li class="dropdown">
<a class="dropLink" href="projects.php">Projects</a>
<div class="drop">
<section>
<a style="font: bold 18px Arial, Geneva, sans-serif;" href="projects.php?a=main&type=game">Games</a>
<a style="font: bold 18px Arial, Geneva, sans-serif;" href="projects.php?a=main&type=book">Books</a>
<a style="font: bold 18px Arial, Geneva, sans-serif;" href="projects.php?a=main&type=show">Shows</a>
</section>
<div class="clear"> </div>
</div>
</li>
</ul>
</nav>
</header>