Plume/templates/base.html.tera

74 lines
3.1 KiB
Plaintext
Raw Normal View History

2018-09-09 20:41:55 +00:00
{% import "macros" as macros %}
2018-05-09 17:53:12 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
2018-06-17 15:26:15 +00:00
<title>{% block title %}{% endblock title %} ⋅ {{ "Plume" | _ }}</title>
2018-09-03 13:59:02 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/static/css/main.css" />
<link rel="stylesheet" href="/static/css/feather.css" />
2018-09-10 14:08:22 +00:00
<link rel="manifest" href="/manifest.json" />
2018-05-09 17:53:12 +00:00
</head>
<body>
2018-05-10 20:31:52 +00:00
<header>
2018-09-01 14:11:42 +00:00
<nav id="menu">
<a href="#" aria-label="{{ "Menu" | _ }}" title="{{ "Menu" | _ }}"><i class="icon icon-menu"></i></a>
2018-05-10 20:31:52 +00:00
</nav>
2018-09-01 14:11:42 +00:00
<div id="content">
<nav>
<a href="/" class="title">{{ "Plume" | _ }}</a>
<hr/>
{% block header %}
{% endblock header %}
</nav>
<nav>
{% if account %}
2018-09-03 13:59:02 +00:00
<a href="/dashboard">
<i class="icon icon-home" aria-label="{{ "Dashboard" | _ }}"></i>
2018-09-03 13:59:02 +00:00
<span class="mobile-label">{{ "Dashboard" | _ }}</span>
</a>
<a href="/notifications">
<i class="icon icon-bell" aria-label="{{ "Notifications" | _ }}"></i>
2018-09-03 13:59:02 +00:00
<span class="mobile-label">{{ "Notifications" | _ }}</span>
</a>
<a href="/logout">
<i class="icon icon-log-out" aria-label="{{ "Log Out" | _ }}"></i>
2018-09-03 13:59:02 +00:00
<span class="mobile-label">{{ "Log Out" | _ }}</span>
</a>
2018-09-09 20:41:55 +00:00
<a href="/me" title="{{ "My account" | _ }}">
{{ macros::avatar(user=account) }}
2018-09-03 13:59:02 +00:00
<span class="mobile-label">{{ "My account" | _ }}</span>
</a>
2018-09-01 14:11:42 +00:00
{% else %}
<a href="/login">
<i class="icon icon-log-in"></i>
<span class="mobile-label">{{ "Log In" | _ }}</span>
</a>
<a href="/users/new">
<i class="icon icon-user-plus"></i>
<span class="mobile-label">{{ "Register" | _ }}</span>
</a>
2018-09-01 14:11:42 +00:00
{% endif %}
</nav>
</div>
2018-05-10 20:31:52 +00:00
</header>
<main>
{% block content %}
{% endblock content %}
</main>
2018-07-27 12:08:39 +00:00
<footer>
<span>Plume 0.2.0</span>
<a href="/about">{{ "About this instance" | _ }}</a>
2018-07-27 12:08:39 +00:00
<a href="https://github.com/Plume-org/Plume">{{ "Source code" | _ }}</a>
2018-08-18 09:23:04 +00:00
<a href="https://riot.im/app/#/room/#plume:disroot.org">{{ "Matrix room" | _ }}</a>
{% if account %}
{% if account.is_admin %}
<a href="/admin">{{ "Administration" | _ }}</a>
{% endif %}
{% endif %}
2018-07-27 12:08:39 +00:00
</footer>
<script src="/static/js/menu.js"></script>
2018-05-09 17:53:12 +00:00
</body>
</html>