mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-29 06:55:06 +02:00
10 lines
299 B
HTML
10 lines
299 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 %d %Y" }}</span>
|
|
<br />
|
|
{{ post.excerpt }}
|
|
{% endfor %}
|
|
|