28 lines
925 B
HTML
28 lines
925 B
HTML
<!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">
|
|
<button class="topnav_button" onclick="location.href='/'">
|
|
Dashboard
|
|
</button>
|
|
<button class="topnav_button" onclick="location.href='/roster'">
|
|
Roster
|
|
</button>
|
|
<button class="topnav_button" onclick="location.href='/events'">
|
|
Events
|
|
</button>
|
|
<button class="topnav_button" onclick="location.href='/documents'">
|
|
Documents
|
|
</button>
|
|
</div>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|