28 lines
463 B
HTML
28 lines
463 B
HTML
<body>
|
|
{# hello this is an example file #}
|
|
<header>
|
|
<h1>{{ page.title|title }}</h1>
|
|
<nav>
|
|
{% if page.links|length > 0 %}
|
|
<ul>
|
|
{% for label, link in page.links %}
|
|
<li>
|
|
{% url 'nav-pages' link as href %}
|
|
<a href="{{href}}">{{label}}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</nav>
|
|
</header>
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
<footer>
|
|
{% for foot in page.footer %}
|
|
{% endfor %}
|
|
</footer>
|
|
</body>
|