more updates to match new code, new entry for testing

This commit is contained in:
Don Harper 2018-12-19 22:11:49 +00:00
parent 46751d66ca
commit 008d2d760c
140 changed files with 17228 additions and 12 deletions

View file

@ -0,0 +1,22 @@
{# -*- coding: utf-8 -*- #}
{% extends 'base.tmpl' %}
{% block content %}
<article class="listpage">
<header>
<h1>{{ title|e }}</h1>
</header>
{% if posts %}
<ul class="postlist">
{% for post in posts %}
<li>
<a href="{{ post.permalink() }}" class="listtitle">{{ post.title()|e }}</a> -
<time class="listdate" datetime="{{ post.formatted_date('webiso') }}" title="{{ post.formatted_date(date_format)|e }}">{{ post.formatted_date(date_format)|e }}</time>
</li>
{% endfor %}
</ul>
{% else %}
<p>{{ messages("No posts found.") }}</p>
{% endif %}
</article>
{% endblock %}