mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-18 15:34:16 +01:00
31 lines
912 B
HTML
31 lines
912 B
HTML
{% extends "head_base.html" %}
|
|
{% block body %}
|
|
|
|
<body>
|
|
<div class="min-h-screen flex flex-col">
|
|
<!-- Navbar -->
|
|
<nav class="navbar bg-base-200">
|
|
<div class="flex-1">
|
|
<a class="btn text-2xl border-transparent btn-outline btn-primary" href="/">Minne</a>
|
|
</div>
|
|
<div>
|
|
<ul class="menu menu-horizontal px-1">
|
|
{% if user %}
|
|
<li><a hx-boost="true" class="" href="/account">Account</a></li>
|
|
<li><a hx-boost="true" href="/signout">Sign out</a></li>
|
|
{% else %}
|
|
<li><a hx-boost="true" class="" href="/signin">Login</a></li>
|
|
<li><a hx-boost="true" class="" href="/signup">Sign up</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Main Content -->
|
|
<main class="flex-grow flex items-center justify-center">
|
|
{% block main %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
</body>
|
|
{% endblock %}
|