cryogen-bootstrap/resources/templates/themes/bootstrap4/html/news.html

23 lines
601 B
HTML
Raw Normal View History

2020-02-16 13:50:12 +00:00
{% extends "/html/page-three-column.html" %}
{% block left %}
{% include "/html/includes/groups.inc" %}
{% endblock %}
{% block center %}
{% if latest-posts|not-empty %}
{% with post=latest-posts|first %}
{% include "/html/includes/post-content.inc" %}
{% include "/html/includes/post-prev-next.inc" %}
{% include "/html/includes/disqus-comment.inc" %}
{% endwith %}
<h2>Ältere News</h2>
2020-02-22 15:07:14 +00:00
{% include "/html/includes/post-latest.inc" %}
2020-02-16 13:50:12 +00:00
<h2>Archiv</h2>
Hier geht's zum <a href="/archives" >Archiv</a>
{% endif %}
{% endblock %}