adds more advanced database handling unsing sql alchemy
- moves app into package - adds sql alchemy equipment - moves templates into server package - add app.db sqlite file
This commit is contained in:
43
server/template/sidebar.html
Normal file
43
server/template/sidebar.html
Normal file
@ -0,0 +1,43 @@
|
||||
<!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="stylesheet" type="text/css" href="/static/css/main.css">
|
||||
<script src="static/js/jquery-3.5.0.min.js"></script>
|
||||
|
||||
<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>Index</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<!-- Side navigation -->
|
||||
<div class="sidenav">
|
||||
<a href="/view">View</a>
|
||||
<a href="/calendar">Calendar</a>
|
||||
<a href="/account">Account</a>
|
||||
<a href="/devices">Devices</a>
|
||||
</div>
|
||||
|
||||
<!-- Page content -->
|
||||
<div class="main">
|
||||
|
||||
{% block body %}
|
||||
// content here
|
||||
{% endblock %}
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user