zr-web/_layouts/default.html

26 lines
628 B
HTML
Raw Permalink Normal View History

2025-02-13 10:20:18 -05:00
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
<title>Zeta Reticuli Gameworks</title>
</head>
<body>
<nav>
2025-02-18 23:06:42 -05:00
<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>
2025-02-13 10:20:18 -05:00
</nav>
{{ content }}
<footer>
2025-02-18 23:06:42 -05:00
<a href="/downloads.html">Free Downloads</a>
2025-02-13 10:20:18 -05:00
</footer>
</body>
</html>