28 lines
		
	
	
		
			905 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			905 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">
 | 
						|
            <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>
 |