backend / templates /base.html
dschandra's picture
Create templates/base.html
f87f5b1 verified
raw
history blame contribute delete
697 Bytes
<!-- templates/base.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gully DRS - {% block title %}{% endblock %}</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<header>
<h1>Gully DRS</h1>
<nav>
<a href="/">Home</a>
<a href="/leaderboard">Leaderboard</a>
</nav>
</header>
<main>
{% block content %}
{% endblock %}
</main>
<footer>
<p>&copy; 2025 Gully DRS. All rights reserved.</p>
</footer>
<script src="/static/js/script.js"></script>
</body>
</html>