Browse Source

Added a simple section page, just to make the theme not break

master
Julio Biason 5 years ago
parent
commit
f46dc94b0f
  1. 17
      templates/section.html

17
templates/section.html

@ -0,0 +1,17 @@
{% extends "index.html" %}
{% block content %}
<div class="post">
<h1 class="post-title">{{ section.title }}</h1>
<ul>
{% for term in section.pages %}
<li class="tag-list">
<a href="{{ term.permalink | safe }}">
{{ term.title }}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endblock content %}
Loading…
Cancel
Save