initial commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user