{# Ënnstatus Copyright (C) 2015 Dennis Fink This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . #} {% extends "bootstrap/base.html" %} {% import 'macros.html' as base_macros with context %} {% if '.onion' in request.url_root %} {% set wiki_url = config['ENNSTATUS_WIKI_ONION_ADDRESS'] %} {% elif '.bit' in request.url_root %} {% set wiki_url = config['ENNSTATUS_WIKI_BIT_ADDRESS'] %} {% else %} {% set wiki_url = "wiki.enn.lu" %} {% endif %} {% block title %} Frënn vun der Ënn - {{ title }} {% endblock %} {% block metas %} {{ super() }} {% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block body %} Skip to main content
{% block navbar %} {% endblock %}
{% with messages = get_flashed_messages(with_categories=True) %} {% if messages %}
{% for category, message in messages %} {{ base_macros.display_error(category, message) }} {% endfor %}
{% endif %} {% endwith %} {% block content %} {% endblock %}
{% block scripts %} {{ super() }} {% endblock %} {% endblock %}