forked from EndangeredMassa/endangeredmassa.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (77 loc) · 3.19 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
layout: default
---
<header class="blog-header">
<h1 class="blog-title">{{ site.title }}</h1>
{% include custom-links.html %}
</header>
<main class="content" role="main">
{% if site.tags.featured %}
<h5 class="index-headline featured"><span>Featured</span></h5>
<div class="container featured">
{% for post in site.tags.featured %}
<article class="post" itemscope itemtype="http://schema.org/BlogPosting" role="article">
<div class="article-item">
<header class="post-header">
<h2 class="post-title" itemprop="name"><a href="{{ post.url | prepend: site.baseurl }}" itemprop="url">{{ post.title }}</a></h2>
</header>
<section class="post-excerpt" itemprop="description">
<p>{{ post.content | strip_html | truncatewords: 50 }}</p>
</section>
<div class="post-meta">
<time datetime="{{ post.date | date_to_long_string }}">{{ post.date | date_to_long_string }}</time>
</div>
</div>
</article>
{% endfor %}
</div>
<h5 class="index-headline normal"><span>Regular</span></h5>
{% endif %}
<div class="cf frame">
{% for post in paginator.posts %}
{% if post.draft != true %}
<article class="post" itemscope itemtype="http://schema.org/BlogPosting" role="article">
<div class="article-item">
<header class="post-header">
<h2 class="post-title" itemprop="name">
{% if post.link %}
<a href="{{ post.link }}" itemprop="url">{{ post.title }}</a>
{% else %}
<a href="{{ post.url | prepend: site.baseurl }}" itemprop="url">{{ post.title }}</a>
{% endif %}
</h2>
</header>
<div class="post-meta">
By
<b>{{ site.author }}</b>
on
<time datetime="{{ post.date }}">{{ post.date | date: '%B %d, %Y' }}</time>
</div>
<section class="post-excerpt" itemprop="description">
{% if post.link %}
<p>{{ post.content }}</p>
{% else %}
<p>{{ post.excerpt | strip_html | truncatewords: 50 }}</p>
{% endif %}
</section>
</div>
</article>
{% endif %}
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<nav class="pagination" role="navigation">
{% if paginator.next_page %}
<a class="newer-posts" href={{ "/page" | prepend: site.baseurl | append: paginator.next_page }}>← 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={{ "/" | prepend: site.baseurl }}>Newer posts →</a>
{% else %}
<a class="older-posts" href={{ "/page" | prepend: site.baseurl | append: paginator.previous_page }}>Newer posts →</a>
{% endif %}
{% endif %}
</nav>
{% endif %}
</main>