2022-11-15 21:57:14 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>
|
|
|
|
{% block title %}
|
|
|
|
{{ title }}
|
|
|
|
{% endblock %}
|
|
|
|
</title>
|
|
|
|
{% block stylesheets %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-12-30 23:41:49 +01:00
|
|
|
<header>
|
|
|
|
<nav>
|
|
|
|
<div role="nav-left">
|
2023-01-13 00:43:54 +01:00
|
|
|
<a href="/" title="home" role="nav-links">
|
|
|
|
<i class="ti ti-biohazard-off"></i>
|
2023-01-08 23:28:25 +01:00
|
|
|
</a>
|
2023-01-13 00:43:54 +01:00
|
|
|
<a href="/about" title="about" role="nav-links">
|
|
|
|
<i class="ti ti-info-circle"></i>
|
2023-01-08 23:28:25 +01:00
|
|
|
</a>
|
2023-01-13 00:43:54 +01:00
|
|
|
<a href="/listings/page/1" title="instance listing" role="nav-links">
|
|
|
|
<i class="ti ti-list"></i>
|
2023-01-08 23:28:25 +01:00
|
|
|
</a>
|
2022-12-30 23:41:49 +01:00
|
|
|
|
2023-01-13 00:43:54 +01:00
|
|
|
</div>
|
|
|
|
<div role="nav-right">
|
|
|
|
|
|
|
|
{% if loggedIn == true %}
|
|
|
|
<a href="/den" title="den index" role="nav-links">
|
|
|
|
<i class="ti ti-door" title="den index"></i>
|
|
|
|
</a>
|
2023-01-17 05:17:22 +01:00
|
|
|
<a href="/den/members/page/1" title="members" role="nav-links">
|
2023-01-13 00:43:54 +01:00
|
|
|
<i class="ti ti-users" title="members"></i>
|
|
|
|
</a>
|
|
|
|
<a href="/den/locations/page/1" title="locations" role="nav-links">
|
|
|
|
<i class="ti ti-list-details" title="locations"></i>
|
|
|
|
</a>
|
|
|
|
<a href="/logout" title="logout" role="nav-links">
|
|
|
|
<i class="ti ti-door-exit" title="logout"></i>
|
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="/den" title="login" role="nav-links">
|
|
|
|
<i class="ti ti-door-enter" title="login"></i>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
{% if options.notice is defined %}
|
|
|
|
<div role="system-notice">
|
|
|
|
<i class="ti ti-alert-circle"></i>
|
|
|
|
{{ options.notice }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2022-12-30 23:41:49 +01:00
|
|
|
|
2023-01-13 00:43:54 +01:00
|
|
|
<main>
|
|
|
|
{% block main %}{% endblock %}
|
|
|
|
</main>
|
|
|
|
</body>
|
2022-11-15 21:57:14 +01:00
|
|
|
</body>
|
2023-01-13 00:43:54 +01:00
|
|
|
</html>
|