blob: 344c78e4281f2f8f18a26850f632b4899032eeb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% for post in site.posts | limit: 3 %}
<section id="news">
<article class="newsitem">
<h2 class="stick-top">
<span class="fa fa-fw fa-chevron-circle-right newsitem-bullet" title="News item"></span>
<a href="{{ post.url }}">{{ post.title }}</a> <small>({{ post.date | date: "%b %-d, %Y" }})</small>
</h2>
<div class="newsitem-content">
{{ post.excerpt }}
<!--<a href="{{ post.url }}" class="btn btn-default btn-sm">read more <span class="fa fa-fw fa-chevron-right"></span></a>-->
</div>
</article>
{% endfor %}
</section>
|