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.
inventory-app/templates/main.html

35 lines
1.2 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" >
<script src="/js/htmx.min.js"></script>
<!--TODO Vendor this script -->
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
<title>{% block title %}Title{% endblock %}</title>
</head>
<body>
<header class="container">
<nav class="container">
<ul>
<li><h1><a class="secondary" href="/home">Inventory App</a></h1></li>
</ul>
<ul>
<li><a class="secondary" href="/overview">Overview</a></li>
<li><a class="secondary" href="/catalog">Catalog</a></li>
<li><a class="secondary" href="/upload">Upload</a></li>
<li><a class="secondary" href="/reports">Reports</a></li>
<li><a class="secondary" href="/history">History</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>

Powered by TurnKey Linux.