blob: 629e4ee77330483167ec9823c384ca0a008af1fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{% if site.posts.size == 0 %}
<p class="h3">Sorry, no posts have been added yet.</p>
{% else %}
{% for post in paginator.posts %}
<a href="{{ post.url | relative_url }}" class="feed-entry">
{% include jekyll-theme/posts/header.html feed=true %}
<div class="text-muted">{{ post.excerpt | markdownify }}</div>
</a>
{% endfor %}
{% include jekyll-theme/posts/paginator.html %}
{% endif %}
|