cryogen-bootstrap/resources/templates/themes/bootstrap4/html/includes/groups.inc

11 lines
241 B
PHP
Raw Normal View History

2020-02-16 13:50:12 +00:00
{% for group in groups %}
<h4>{{group.group}}</h4>
<ul>
{% for post in group.posts %}
<li>
{{post.date|date:"MMM dd"}} - <a href="{{post.uri}}">{{post.title}}</a>
</li>
{% endfor %}
</ul>
{% endfor %}