You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="color-scheme" content="light dark">
|
|
<link rel="stylesheet" href="/css/pico.min.css">
|
|
<link rel="stylesheet" href="/css/custom.css">
|
|
<script src="/js/htmx.min.js"></script>
|
|
<title>{% block title %}Title{% endblock %}</title>
|
|
</head>
|
|
<body>
|
|
<header class="container">
|
|
<nav class="container">
|
|
<ul>
|
|
<li><h1>Inventory App</h1></li>
|
|
</ul>
|
|
<ul>
|
|
<li><a class="secondary" href="#">Overview</a></li>
|
|
<li><a class="secondary" href="#">Receiving</a></li>
|
|
<li><a class="secondary" href="#">Reports</a></li>
|
|
<li><a class="secondary" href="#">Adjustments</a></li>
|
|
<li><a class="contrast" href="/auth/logout">Logout</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main class="container">
|
|
{% block content %}<p>Content Missing</p>{% endblock %}
|
|
</main>
|
|
<footer class="container-fluid">
|
|
</footer>
|
|
</body>
|
|
</html> |