momangen/_includes/past-news.html
2020-05-22 17:38:25 +02:00

13 lines
374 B
HTML

{% assign count = site.posts | size %}
{% if count > 1 %}
<br />
<h3>Äldre inlägg</h3>
{% for post in site.posts | offset: 1%}
<div class="pastevents" {% if forloop.last == true %}style="border:none"{% endif %}>
<p>{{ post.date | date: '%Y-%m-%d' }}<br />
<a href="{{ event.url }}"><strong>{{ post.title }}</strong></a>
</p>
</div> {% endfor %}
{% endif %}