blob: b900ef6cf8b51fedaa097f463cbee5a3fde9552e (
plain)
1
2
3
4
5
6
7
8
|
<ul class="article-list">
{% for item in list %}
<li>
<time datetime="{{ item.date|date("Y, F j") }}">{{ item.date|date("Y, F j") }}</time>
<a href="{{ item.slug }}">{{ item.title }}</a>
</li>
{% endfor %}
</ul>
|