45 lines
1012 B
Twig
45 lines
1012 B
Twig
<!doctype html>
|
|
<html class="no-js" lang="en">
|
|
|
|
<head>
|
|
{% include ['@override/head.html.twig', '@novaconium/head.html.twig'] %}
|
|
</head>
|
|
|
|
<body id="{{ pageid | default('pageid') }}" class="{{ pageclass | default('pageclass') }}" >
|
|
|
|
{# Page Header #}
|
|
<header>
|
|
<h1 id="biglogo"><span class="main">Novaconium</span></h1>
|
|
</header>
|
|
|
|
<!-- Main Content Of The Page -->
|
|
<div id="panel" class="container">
|
|
|
|
{% include ['@novaconium/cp/menu.html.twig'] %}
|
|
|
|
<main id="content">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
</div>
|
|
|
|
{# Page Footer #}
|
|
<footer>
|
|
<div class="copyright">© {{ 'now' | date('Y') }} Novaconium</div>
|
|
</footer>
|
|
|
|
{% include '@novaconium/javascript/page-edit.html.twig' %}
|
|
|
|
{% if editor == 'ace' %}
|
|
{% include '@novaconium/javascript/ace.html.twig' %}
|
|
{% endif %}
|
|
|
|
{% if debug is not empty %}
|
|
<div id="debug">
|
|
<h2>Debugging Information</h2>
|
|
{{ debug|raw }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
</body></html>
|