Plume/templates/base.html.tera

52 lines
2 KiB
Plaintext
Raw Normal View History

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>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/static/main.css" />
<link rel="stylesheet" href="/static/fontawesome-5.0.10/css/fontawesome-all.min.css" />
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" | _ }}"></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 %}
<a href="/dashboard">{{ "Dashboard" | _ }}</a>
<a href="/notifications">{{ "Notifications" | _ }}</a>
<a href="/me">{{ "My account" | _ }}</a>
<a href="/logout">{{ "Log Out" | _ }}</a>
{% else %}
<a href="/login">{{ "Log In" | _ }}</a>
<a href="/users/new">{{ "Register" | _ }}</a>
{% 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.1.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>
2018-05-09 17:53:12 +00:00
</body>
</html>