dnd/deadsands/www/deadsands-theme/templates/recent.html

8 lines
366 B
HTML
Raw Normal View History

2022-07-26 17:22:04 -07:00
{% set lim = count or 10 %}
{% set a = articles | selectattr(key, 'in', values) | list %}
{% for article in a[:lim] %}
<article class='recent'>
<a class='title' href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{article.title|striptags }}">{{ article.title }}</a><span class="summary"> {{ article.summary }} </span>
</article>
{% endfor %}