working for a parked page
This commit is contained in:
6
twig/foot.html.twig
Normal file
6
twig/foot.html.twig
Normal file
@@ -0,0 +1,6 @@
|
||||
<!--
|
||||
What goes very last on the page.
|
||||
right before the /body
|
||||
like javascript
|
||||
or analytics
|
||||
-->
|
||||
3
twig/footer.html.twig
Normal file
3
twig/footer.html.twig
Normal file
@@ -0,0 +1,3 @@
|
||||
<!--
|
||||
What goes in the footer html tag
|
||||
-->
|
||||
@@ -1,6 +1,6 @@
|
||||
<meta charset="utf-8">
|
||||
<title>{{ title | default('Welcome') }}</title>
|
||||
<meta name="generator" content="nickyeoman/phpframework" />
|
||||
<meta name="generator" content="Novaconium" />
|
||||
|
||||
<meta name="description" content="{{ description | default('No description given') }}">
|
||||
<meta name="keywords" content="{{ keywords | default('website') }}">
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
|
||||
{% include '@override/mod_above_head.html.twig' ignore missing %}
|
||||
{% include '@override/above_head.html.twig' ignore missing %}
|
||||
|
||||
<head>
|
||||
{% include ['@override/mod_head.html.twig', '@novaconium/head.html.twig'] %}
|
||||
{% include ['@override/head.html.twig', '@novaconium/head.html.twig'] %}
|
||||
</head>
|
||||
|
||||
<body id="{{ pageid | default('pageid') }}">
|
||||
@@ -12,7 +12,7 @@
|
||||
{# Page Header #}
|
||||
<header>
|
||||
{% block headerbefore %}{% endblock %}
|
||||
{% include ['@override/mod_nav.html.twig', '@novaconium/nav.html.twig'] %}
|
||||
{% include ['@override/nav.html.twig', '@novaconium/nav.html.twig'] %}
|
||||
{% block headerafter %}{% endblock %}
|
||||
</header>
|
||||
|
||||
@@ -34,9 +34,7 @@
|
||||
{% endif %}
|
||||
|
||||
<article>
|
||||
{% include 'cms/mod_alex.html.twig' ignore missing %}
|
||||
{% block content %}{% endblock %}
|
||||
{% include 'cms/mod_simon.html.twig' ignore missing %}
|
||||
</article>
|
||||
</div>
|
||||
|
||||
@@ -46,9 +44,9 @@
|
||||
{# Page Footer #}
|
||||
<footer>
|
||||
{% block footerbefore %}{% endblock %}
|
||||
{% include '@override/mod_footer.html.twig' ignore missing %}
|
||||
{% include ['@override/footer.html.twig', '@novaconium/footer.html.twig'] %}
|
||||
{% block footerafter %}{% endblock %}
|
||||
</footer>
|
||||
|
||||
{% include '@override/mod_foot.html.twig' ignore missing %}
|
||||
{% include ['@override/foot.html.twig', '@novaconium/foot.html.twig'] %}
|
||||
</body></html>
|
||||
|
||||
Reference in New Issue
Block a user