cryogen-bootstrap/themes/bootstrap4/html/includes/groups.inc
2019-11-23 12:45:04 +01:00

11 lines
No EOL
241 B
PHP

{% 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 %}