Initial commit -- migration to zola
This commit is contained in:
commit
a79e7faa87
55 changed files with 375 additions and 0 deletions
23
templates/blog.html
Normal file
23
templates/blog.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block page_title %}
|
||||
{{section.title}} |
|
||||
{% endblock page_title %}
|
||||
|
||||
{% block nav %}
|
||||
<ul>
|
||||
<li><a href="{{ section.permalink | safe }}">{{ section.title | lower }}/</a></li>
|
||||
{% for page in section.pages %}
|
||||
<li><a href="{{ page.permalink | safe }}">{{ page.slug }}/</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock nav %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class="title">
|
||||
{{ section.title }}
|
||||
</h1>
|
||||
|
||||
{{ section.content | safe }}
|
||||
|
||||
{% endblock content %}
|
Loading…
Add table
Add a link
Reference in a new issue