-
Notifications
You must be signed in to change notification settings - Fork 166
/
index.html
50 lines (44 loc) · 1.75 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
layout: default
---
<main class="content" role="main">
<header class="blog-header">
<h1 class="blog-title">{{ site.title }}</h1>
<h2 class="blog-description">{{ site.description }}</h2>
</header>
<div class="cf frame">
{% for post in paginator.posts %}
<article class="post" itemscope itemtype="https://schema.org/BlogPosting" role="article">
<div class="article-item">
<header class="post-header">
<h2 class="post-title" itemprop="name"><a href="{{ site.baseurl }}{{ post.url }}" itemprop="url">{{ post.title }}</a></h2>
</header>
<section class="post-excerpt" itemprop="description">
<p>{{ post.excerpt | strip_html | truncatewords: 50 }}</p>
</section>
<div class="post-meta">
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_long_string }}</time>
</div>
</div>
</article>
{% endfor %}
</div>
<nav class="pagination" role="navigation">
{% if paginator.next_page %}
<a class="newer-posts" href="{{ site.baseurl }}/page{{paginator.next_page}}">← Older posts</a>
{% else %}
<a class="newer-posts disabled">← Older posts</a>
{% endif %}
<span class="page-number">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="older-posts" href="{{ site.baseurl }}/">Newer posts →</a>
{% else %}
<a class="older-posts" href="{{ site.baseurl }}/page{{paginator.previous_page}}">Newer posts →</a>
{% endif %}
{% else %}
<a class="older-posts disabled">Newer posts →</a>
{% endif %}
</nav>
</main>
{% include footer.html %}