26 lines
628 B
HTML
26 lines
628 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
<title>Zeta Reticuli Gameworks</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<nav>
|
|
<a href="/" {% if page.url == "/" %}class="current"{% endif %}>Home</a>
|
|
<a href="/about.html" {% if page.url == "/about.html" %}class="current"{% endif %}>About Us</a>
|
|
<a href="/" {% if page.url == "/games.html" %}class="current"{% endif %}>Games </a>
|
|
<a href="/contact.html" {% if page.url == "/contact.html" %}class="current"{% endif %}>Contact Us</a>
|
|
</nav>
|
|
|
|
{{ content }}
|
|
|
|
<footer>
|
|
<a href="/downloads.html">Free Downloads</a>
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html> |