blob: 4fe4a29ad5d53588ba906fb2227723cbeda98987 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% 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">
<div class="post-header">
<h3>{{ post.title }}</h3>
<div class="post-date">
<p class="text-muted">
{% if post.category %}
<span class="glyphicon glyphicon-folder-open"></span> <span class="category">{{ post.category }}</span>
{% endif %}
<span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }}
</p>
</div>
</div>
{{ post.excerpt | markdownify }}
</a>
{% endfor %}
{% include jekyll-theme/posts/paginator.html %}
{% endif %}
|