-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
74 lines (70 loc) · 2.15 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
---
layout: default
title: "Blog About Binary Artifact Management"
description: |
We blog about binary artifact management and
share our experience in using existing tools
and our own one: Artipie
keywords:
- artifacts
- artipie
---
<article itemscope="" itemtype="http://schema.org/Blog">
{% for post in paginator.posts %}
<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>
{% endfor %}
<!--
We have just a few posts, it's too early to do paginating. Uncomment
this blog when we have enough blog posts.
<div class="pagination">
<div class="left">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/"><i class="icon icon-fast-backward"></i></a>
{% else %}
<a href="/p/{{ paginator.previous_page }}"><i class="icon icon-fast-backward"></i></a>
{% endif %}
{% else %}
<span class="mute"><i class="icon icon-fast-backward"></i></span>
{% endif %}
</div>
page {{ paginator.page }} of {{ paginator.total_pages }}
<div class="right">
{% if paginator.next_page %}
<a href="/p/{{ paginator.next_page }}"><i class="icon icon-fast-forward"></i></a>
{% else %}
<span class="mute"><i class="icon icon-fast-forward"></i></span>
{% endif %}
</div>
</div>
-->
</article>