forked from monero-project/monero-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (89 loc) · 3.72 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
88
89
90
91
92
93
---
layout: custom
title: titles.blogbytag
meta_descr: meta_descr.blog
---
<div class="blog">
<!-- Category selector: desktop -->
<div class="container full">
<div class="info-block blog-nav row">
<div class="col {% if page.name == 'index.html' %}checked{% endif %}"><a href="{{ site.baseurl }}/blog/">{% t blog.allposts %}</a></div>
<div class="col"><a href="{{ site.baseurl }}/blog/tags/urgent.html">{% t blog.urgent %}</a></div>
<div class="col"><a href="{{ site.baseurl }}/blog/tags/releases.html">{% t blog.releases %}</a></div>
<div class="col"><a href="{{ site.baseurl }}/blog/tags/community.html">{% t blog.community %}</a></div>
<div class="col"><a href="{{ site.baseurl }}/blog/tags/dev%20diaries.html">{% t blog.meetinglogs %}</a></div>
</div>
</div>
<!-- End category selector: desktop -->
<!-- Category selector: mobile -->
<div class="container full">
<div class="info-block row center-xs" id="pick-platform">
<div class="mob dropdowndrop">
<input id="filter" type="checkbox" name="category-filter"/>
<label for="filter">{% t blog.filter %}</label>
<ul id="menu">
<li><a href="{{ site.baseurl }}/blog/">{% t blog.allposts %}</a></li>
<li><a href="{{ site.baseurl }}/blog/tags/urgent.html">{% t blog.urgent %}</a></li>
<li><a href="{{ site.baseurl }}/blog/tags/releases.html">{% t blog.releases %}</a></li>
<li><a href="{{ site.baseurl }}/blog/tags/community.html">{% t blog.community %}</a></li>
<li><a href="{{ site.baseurl }}/blog/tags/dev%20diaries.html">{% t blog.meetinglogs %}</a></li>
</ul>
</div>
</div>
</div>
<!-- End category selector: mobile -->
</div>
<div class="site-wrap">
<section class="container full">
<div class="row">
<!-- Full block-->
<div class="info-block">
<div class="feed">
<a href="/feed.xml" aria-label="Feed logo"><span class="feed-pic"></span></a>
<h2>{% t blog.allposts %}</h2>
</div>
{% for post in paginator.posts %}
<div class="post-lead">
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p>
{{ post.summary }}
</p>
<p>
<small>
{% t blog.author %} {{ post.author }} | {{ post.date | date: "%-d %B %Y" }}<br>
Category:
{% for tag in post.tags %}
<a href="/blog/tags/{{ tag }}.html">{{ tag }}</a>{% unless forloop.last %},{% endunless %}
{% endfor %}
</small>
</p>
</div>
{% endfor %}
</div>
<!-- End full block-->
{% if paginator.total_pages > 1 %}
<div class="page-numbers"><p>
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | replace: '//', '/' }}">« {% t blog.prev %}</a>
{% else %}
<span>« Prev</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<em>{{ page }}</em>
{% elsif page == 1 %}
<a href="{{ site.baseurl }}/blog">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | prepend: '/' | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | replace: '//', '/' }}">{% t blog.next %} »</a>
{% else %}
<span>Next »</span>
{% endif %}
</p></div>
{% endif %}
</section>
<a href="#" class="arrow-up" aria-label="{% t accessibility.arrowup %}" title="{% t accessibility.gotop %}"><i></i></a>
</div>