41 lines
1.0 KiB
Twig
41 lines
1.0 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>{% block title %}Untitled page{% endblock %} - MailAccountAdmin</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<link rel="stylesheet" href="/static/style.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<h1>MailAccountAdmin</h1>
|
|
<div class="header_userstatus">
|
|
Hello, <b>{{ current_user_name }}</b>. | <a href="/logout">Logout</a>
|
|
</div>
|
|
</header>
|
|
|
|
<nav>
|
|
<ul>
|
|
{% macro navbar_item(path, text) -%}
|
|
<li{% if current_url() == path or current_url() starts with path ~ '/' %} class="nav_current_page"{% endif %}>
|
|
<a href="{{ path }}">{{ text }}</a>
|
|
</li>
|
|
{%- endmacro -%}
|
|
|
|
{{ _self.navbar_item('/', 'Dashboard') }}
|
|
{{ _self.navbar_item('/domains', 'Domains') }}
|
|
{{ _self.navbar_item('/accounts', 'Accounts') }}
|
|
</ul>
|
|
</nav>
|
|
|
|
<main>
|
|
{% block content %}
|
|
Nothing to see here...
|
|
{% endblock %}
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|