You've already forked snikket-web-portal
This allows us to translate the pages using the same tooling and to have consistent theming.
13 lines
482 B
HTML
13 lines
482 B
HTML
{% extends "base.html" %}
|
|
{% from "library.j2" import box, form_button %}
|
|
{% block body %}
|
|
<div id="topbar" class="{% block topbar_classes %}{% endblock %}">
|
|
<header><a href="{{ url_for('.index') }}"><span>{{ config["SITE_NAME"] }}</span></a></header>
|
|
{% block topbar_left %}{% endblock %}
|
|
<div class="filler"></div>
|
|
{% block topbar_right %}{% endblock %}
|
|
</div>
|
|
<div id="mwrap"><main>{% block content %}{% endblock %}</main></div>
|
|
{%- include "_footer.html" -%}
|
|
{% endblock %}
|