Newer
Older
<section class="section typeset">
<ul class="list list--posts">
{% assign frontpage_articles = (site.posts | where: "frontpage" , "true") %}
{% for page in frontpage_articles limit:10 %}
<li class="item item--post">
<article class="article article--post">
<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title | markdownify }}</a></h2>
{% include post-meta.html %}
{{ page.excerpt | strip_html | markdownify | truncatewords: 60 }}
</article>
</li>
{% endfor %}
</ul>
</section>