mediasort/templates/page.html

22 lines
720 B
HTML

{% extends "html.html" %}
{% block body %}
<body class="flex v100 items-stretch white bg-black">
<nav class="p2 overflow-scroll bg-darken-4" style="width:256px">
<h1 class="m0">msort</h1>
<p class="mt0 gray">media librarian</p>
{% block toolbar %}{% endblock %}
</nav>
<div class="flex-auto flex flex-column">
<header class="flex items-center x1 bg-darken-2">
<h3 class="h3 m0 px2">Logged in as: {{ user }}</h3>
<a href="/" class="nav-item ml-auto">Sign Out</a>
</header>
<main class="flex-auto p3">
{% block main %}{% endblock %}
<hr />
</main>
</div>
<a name="bottom" />
</body>
{% endblock %}