-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
64 lines (61 loc) · 1.74 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
---
layout: default
title: "News About EO Programming Language"
description: |
Here we post most recent news about
EO programming language and 𝜑-calculus
keywords:
- oop
- eolang
---
{% for post in paginator.posts %}
<article itemscope="" itemtype="http://schema.org/Blog">
<div class="front" itemprop="blogPosts" itemscope="" itemtype="http://schema.org/BlogPosting">
<h1>
<a href="{{ post.url }}">
<span itemprop="name headline mainEntityOfPage">{{ post.title }}</span>
</a>
</h1>
<ul class="subline">
<li>
<time itemprop="author">
<a href="https://github.com/{{ post.author }}">@{{ post.author }}</a>
</time>
</li>
<li>
<time itemprop="datePublished dateModified" datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date_to_string }}
</time>
</li>
<li>
<a href="{{ site.url }}{{ post.url }}#disqus_thread" itemprop="discussionUrl">comments</a>
</li>
</ul>
<div class="main" itemprop="description">
{{ post.excerpt }}
</div>
<p>
<a href="{{ post.url }}" itemprop="url">
Continue...
</a>
</p>
</div>
</article>
{% endfor %}
<div class="pagination">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/">◀</a>
{% else %}
<a href="/p/{{ paginator.previous_page }}">◀</a>
{% endif %}
{% else %}
<span class="mute">◀</span>
{% endif %}
page {{ paginator.page }} of {{ paginator.total_pages }}
{% if paginator.next_page %}
<a href="/p/{{ paginator.next_page }}">▶</a>
{% else %}
<span class="mute">▶</span>
{% endif %}
</div>