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

11 lines
255 B
PHP
Raw Normal View History

2020-02-22 12:38:41 +00:00
{% if latest-posts|not-empty %}
<h3>Recent Posts</h3>
<ul>
{% for post in latest-posts %}
<li>
{{post.date|date:"MMM dd"}} - <a href="{{post.uri}}">{{post.title}}</a>
</li>
{% endfor %}
</ul>
{% endif %}