Initial
This commit is contained in:
27
templates/base.html
Normal file
27
templates/base.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
<link href="css/global.css" rel="stylesheet">
|
||||
{% block headers %}{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
<div id="topnav">
|
||||
<div class="topnav_button" onclick="location.href='/'">
|
||||
Dashboard
|
||||
</div>
|
||||
<div class="topnav_button" onclick="location.href='/roster'">
|
||||
Roster
|
||||
</div>
|
||||
<div class="topnav_button" onclick="location.href='/events'">
|
||||
Events
|
||||
</div>
|
||||
<div class="topnav_button" onclick="location.href='/documents'">
|
||||
Documents
|
||||
</div>
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user