23 lines
746 B
HTML
23 lines
746 B
HTML
{# Don't use the default theme to emphasize this page is special -#}
|
|
<!doctype html>
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta content="utf-8" http-equiv="encoding">
|
|
<link rel=stylesheet href="{{ url_for('static', filename='theme.css') }}">
|
|
{%- if config.server_name -%}
|
|
<link rel=stylesheet href="{{ url_for('static', filename='user.css') }}">
|
|
{%- endif -%}
|
|
</head>
|
|
<body>
|
|
<h1>{{ title }}</h1>
|
|
<p>
|
|
<a href="{{ url_for('admin') }}">Admin panel</a><span> | </span>
|
|
<a href="{{ url_for('index') }}">Home page</a>
|
|
</p>
|
|
{%- for category, msg in get_flashed_messages(True) -%}
|
|
<p class="flash {{ category }}">{{ msg }}</p>
|
|
{%- endfor %}
|
|
{%- block content %}{% endblock -%}
|
|
</body>
|