This commit is contained in:
Daniel Hladek 2020-10-03 17:01:21 +02:00
parent 1b96a3d1d0
commit 1f1afde634

View File

@ -10,6 +10,16 @@
{% set catlist = tmplst %}
{% endif %}
{% for cat in catlist %}
<h2> {{ cat }}</h2>
{% set catpages = taxonomy.findTaxonomy({'author': author,'category':cat}).order('date', 'desc') %}
<ul>
{% for p in catpages %}
<li><a href="{{p.url}}">{{ p.title|e }}</a></li>
{% endfor %}
</ul>
{% endfor %}
{% set pages = taxonomy.findTaxonomy({'author': author}).order('date', 'desc') %}
{% set tmplst = [] %}
{% for page in pages %}