dschandra commited on
Commit
f87f5b1
·
verified ·
1 Parent(s): 2936ffe

Create templates/base.html

Browse files
Files changed (1) hide show
  1. templates/base.html +27 -0
templates/base.html ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!-- templates/base.html -->
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Gully DRS - {% block title %}{% endblock %}</title>
8
+ <link rel="stylesheet" href="/static/css/style.css">
9
+ </head>
10
+ <body>
11
+ <header>
12
+ <h1>Gully DRS</h1>
13
+ <nav>
14
+ <a href="/">Home</a>
15
+ <a href="/leaderboard">Leaderboard</a>
16
+ </nav>
17
+ </header>
18
+ <main>
19
+ {% block content %}
20
+ {% endblock %}
21
+ </main>
22
+ <footer>
23
+ <p>&copy; 2025 Gully DRS. All rights reserved.</p>
24
+ </footer>
25
+ <script src="/static/js/script.js"></script>
26
+ </body>
27
+ </html>