cyclone/_includes/recent-news.html
2019-03-04 18:25:27 -05:00

10 lines
300 B
HTML

<h2>Recent News</h2>
{% for post in site.posts limit:3 %}
<h4>
<a href="/cyclone/{{ post.url }}">{{ post.title }}</a>
</h4>
<span class="date-labels">{{post.date | date: "%B %e, %Y" }}</span>
<br />
{{ post.excerpt }}
{% endfor %}