49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="UTF-8">
 | 
						|
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
 | 
						|
  <link rel="shortcut icon" type="image/jpg" href="/static/res/favicon.ico"/>
 | 
						|
  <link rel="stylesheet" type="text/css" href="/static/css/main.css">
 | 
						|
  <script src="static/js/jquery-3.5.0.min.js"></script>
 | 
						|
  <script type="text/javascript"  src="static/js/index.js"></script>
 | 
						|
  
 | 
						|
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
 | 
						|
  <link rel="stylesheet" href="static/css/colorPick.css">
 | 
						|
  <!-- OPTIONAL DARK THEME -->
 | 
						|
  <link rel="stylesheet" href="static/css/colorPick.dark.theme.css">
 | 
						|
  <script src="static/js/colorPick.js"></script>
 | 
						|
 | 
						|
  <title>Logitude</title>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
    <div id="container">
 | 
						|
         <!-- Side navigation -->
 | 
						|
        <div class="navigation" id="navigation">
 | 
						|
            <a href="/view">View</a>
 | 
						|
            <a href="/calendar">Calendar</a>
 | 
						|
            <a href="/account">Account</a>
 | 
						|
            <a href="/devices">Devices</a>
 | 
						|
            <a href="javascript:void(0);" class="icon" onclick="menuBars()">
 | 
						|
                <i class="fa fa-bars"></i>
 | 
						|
            </a>
 | 
						|
        </div>
 | 
						|
      
 | 
						|
      <!-- Page content -->
 | 
						|
          <div id="main">
 | 
						|
      
 | 
						|
                {% block body %}
 | 
						|
                // content here
 | 
						|
                {% endblock %}
 | 
						|
 | 
						|
          </div>
 | 
						|
          {% include "footer.html" %}
 | 
						|
    </div>
 | 
						|
</body>
 | 
						|
 | 
						|
 | 
						|
</html>
 |