You've already forked snikket-web-portal
This allows us to translate the pages using the same tooling and to have consistent theming.
11 lines
350 B
HTML
11 lines
350 B
HTML
{% extends "base.html" %}
|
|
{% from "library.j2" import standard_button %}
|
|
{% block style %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for("static", filename="css/invite.css") }}">
|
|
{% endblock %}
|
|
{% block body %}
|
|
<div id="mwrap"><main>{% block content %}{% endblock %}</main></div>
|
|
{%- include "_footer.html" -%}
|
|
{% endblock %}
|