d3c3nt

[DORMANT] a fairly decent theme for the zola static site engine
git clone git://git.figbert.com/d3c3nt.git
Log | Files | Refs | README | LICENSE

list.html (294B)


      1 {% extends "index.html" %}
      2 {% block content %}
      3       <ul class="date-list">
      4       {% for page in section.pages %}
      5         <li><a href="{{ page.permalink | safe }}">{{ page.title | safe }}</a> {{ page.date | date(format="%B %d, %Y") }}</li>
      6       {% endfor %}
      7       </ul>
      8 {% endblock content %}