novaconium/twig/master.html.twig

53 lines
1.4 KiB
Twig
Raw Normal View History

2024-08-30 00:48:44 -07:00
<!doctype html>
<html class="no-js" lang="en">
2024-08-31 14:02:51 -07:00
{% include '@override/above_head.html.twig' ignore missing %}
2024-08-30 00:48:44 -07:00
<head>
2024-08-31 14:02:51 -07:00
{% include ['@override/head.html.twig', '@novaconium/head.html.twig'] %}
2024-08-30 00:48:44 -07:00
</head>
<body id="{{ pageid | default('pageid') }}">
2024-09-02 17:10:24 -07:00
{# Page Header #}
<header>
{% block headerbefore %}{% endblock %}
{% include ['@override/nav.html.twig', '@novaconium/nav.html.twig'] %}
{% block headerafter %}{% endblock %}
</header>
<!-- Main Content Of The Page -->
<div id="page">
<div class="container">
<div class="middle">
{% if error|default is not empty %}
{% for key, val in error %}
<div class="error">{{ val }}</div>
{% endfor %}
{% endif %}
{% if notice|default is not empty %}
{% for key, val in notice %}
<div class="notice">{{ val }}</div>
{% endfor %}
{% endif %}
<article>
{% block content %}{% endblock %}
</article>
</div>
2024-08-30 00:48:44 -07:00
</div>
</div>
2024-09-02 17:10:24 -07:00
{# Page Footer #}
<footer>
{% block footerbefore %}{% endblock %}
{% include ['@override/footer.html.twig', '@novaconium/footer.html.twig'] %}
{% block footerafter %}{% endblock %}
</footer>
2024-08-31 14:02:51 -07:00
{% include ['@override/foot.html.twig', '@novaconium/foot.html.twig'] %}
2024-08-30 00:48:44 -07:00
</body></html>