-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
76 lines (74 loc) · 2.32 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
---
layout: default
title: Blog@Zold
description: |
Blog about Zold and other cryptocurrencies.
---
<div itemscope="" itemtype="http://schema.org/Blog">
{% for page in paginator.posts %}
<div class="container">
<article itemprop="blogPosts" itemscope="" itemtype="http://schema.org/BlogPosting">
<h1>
<a href="{{ page.url }}">
<span itemprop="name headline mainEntityOfPage">{{ page.title }}</span>
</a>
</h1>
<ul class="subline">
<li>
{% if page.author.twitter %}
<i class="icon icon-twitter notranslate" aria-hidden="true"></i>
<a href="https://twitter.com/intent/follow?screen_name={{ page.author.twitter }}">{{ page.author.name }}</a>
{% endif %}
{% if page.author.linkedin %}
<i class="icon icon-linkedin notranslate" aria-hidden="true"></i>
<a href="https://linkedin.com/in/{{ page.author.linkedin }}">{{ page.author.name }}</a>
{% endif %}
</li>
<li>
<time itemprop="datePublished dateModified" datetime="{{ page.date | date_to_xmlschema }}">
{{ page.date | date: "%-d %B %Y" }}
</time>
</li>
<!--
<li>
<i class="icon icon-comments"></i>
<a href="{{ site.url }}{{ page.url }}#disqus_thread" itemprop="discussionUrl">comments</a>
</li>
-->
</ul>
<div class="main" itemprop="description">
{{ page.excerpt }}
</div>
<p>
<a href="{{ page.url }}" itemprop="url">
Continue...
</a>
</p>
</article>
</div>
{% endfor %}
{% if paginator.total_pages > 1 %}
<div class="container">
<article>
<div class="pagination">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/">Back</a>
{% else %}
<a href="/p/{{ paginator.previous_page }}">Back</a>
{% endif %}
{% else %}
<span class="gray">Back</span>
{% endif %}
{{ paginator.page }}/{{ paginator.total_pages }}
{% if paginator.next_page %}
<a href="/p/{{ paginator.next_page }}">Next</a>
{% else %}
<span class="gray">Next</span>
{% endif %}
</div>
</article>
</div>
{% endif %}