-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·33 lines (33 loc) · 1.03 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
layout: home
title: Home
sitemap:
priority: 1.0
changefreq: weekly
---
{% for post in paginator.posts %}
<div class="unit whole single-post-excerpt">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<div class="meta-info">
<span class="meta"><time class="timeago postlist-meta" datetime="{{ post.date | date: "%Y. %m. %d" }}"><i class="fa fa-calendar"></i>{{ post.date | date: "%Y. %m. %d" }}</time></span>
{% if post.tags and post.tags.size > 0 %}
<div class="tags">
Tagged:
{% for tag in post.tags %}
<span><i class="fa fa-tag"></i>{{ tag }}</span>
{% endfor %}
</div>
{% endif %}
</div>
<p class="description">{{ post.excerpt | strip_html}}</p>
</div>
{% endfor %}
<div class="unit whole paginator">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">Previous</a>
{% endif %}
<span>Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Next</a>
{% endif %}
</div>