2017-01-03 19:41:34 -05:00
|
|
|
{% if paginator.posts %}
|
|
|
|
|
|
|
|
<ul class="list list--posts">
|
|
|
|
{% for page in paginator.posts %}
|
|
|
|
<li class="item item--post">
|
|
|
|
<article class="article article--post typeset">
|
|
|
|
|
2018-01-01 15:23:56 -05:00
|
|
|
<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2>
|
2017-01-03 19:41:34 -05:00
|
|
|
{% include post-meta.html %}
|
|
|
|
{{ page.excerpt | markdownify | truncatewords: 60 }}
|
|
|
|
|
|
|
|
</article>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% include post-pagination.html %}
|
|
|
|
|
|
|
|
{% else %}
|
2017-01-04 17:36:30 -05:00
|
|
|
|
2017-01-03 19:41:34 -05:00
|
|
|
<ul class="list list--posts">
|
2017-01-03 20:07:47 -05:00
|
|
|
{% for page in site.posts %}
|
2017-01-03 19:41:34 -05:00
|
|
|
<li class="item item--post">
|
|
|
|
<article class="article article--post typeset">
|
|
|
|
|
2018-01-01 15:23:56 -05:00
|
|
|
<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2>
|
2017-01-03 19:41:34 -05:00
|
|
|
{% include post-meta.html %}
|
|
|
|
{{ page.excerpt | markdownify | truncatewords: 60 }}
|
|
|
|
|
|
|
|
</article>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{% endif %}
|