2017-07-04 06:00:32 +00:00
|
|
|
---
|
2019-01-19 03:18:55 +00:00
|
|
|
layout: base
|
2017-12-19 21:13:58 +00:00
|
|
|
title: titles.allposts
|
2017-07-04 06:00:32 +00:00
|
|
|
---
|
|
|
|
|
2019-01-19 03:18:55 +00:00
|
|
|
<h1 class="text-center">{% t page.title %}</h1>
|
|
|
|
|
|
|
|
<div class="site-wrap">
|
|
|
|
<!-- FULL WIDTH BLOCK -->
|
|
|
|
<section class="container full">
|
|
|
|
<div>
|
|
|
|
{% for post in paginator.posts %}
|
|
|
|
<div class="post-lead info-block">
|
|
|
|
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
|
|
|
<p>
|
|
|
|
{{ post.summary }}
|
|
|
|
</p>
|
|
|
|
<p>
|
2020-02-24 16:20:06 +00:00
|
|
|
<small>
|
|
|
|
{% t blog.author %} {{ post.author }} | {{ post.date | date: "%-d %B %Y" }}<br>
|
|
|
|
Category:
|
2019-01-19 03:18:55 +00:00
|
|
|
{% for tag in post.tags %}
|
2020-06-10 06:27:16 +00:00
|
|
|
<a href="/blog/tags/{{ tag }}.html">{{ tag }}</a>{% unless forloop.last %},{% endunless %}
|
2019-01-19 03:18:55 +00:00
|
|
|
{% endfor %}
|
|
|
|
</small>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<!-- END FULL WIDTH BLOCK -->
|
|
|
|
</div>
|
2017-07-04 06:00:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
{% if paginator.total_pages > 1 %}
|
2019-01-19 03:18:55 +00:00
|
|
|
<div class="text-center page-numbers"><p>
|
2017-07-04 06:00:32 +00:00
|
|
|
{% if paginator.previous_page %}
|
2020-01-29 09:58:18 +00:00
|
|
|
<a href="{{ paginator.previous_page_path | replace: '//', '/' }}">« Prev</a>
|
2017-07-04 06:00:32 +00:00
|
|
|
{% else %}
|
|
|
|
<span>« Prev</span>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% for page in (1..paginator.total_pages) %}
|
|
|
|
{% if page == paginator.page %}
|
|
|
|
<em>{{ page }}</em>
|
|
|
|
{% elsif page == 1 %}
|
2020-05-14 12:35:44 +00:00
|
|
|
<a href="{{ site.baseurl_root }}/blog">{{ page }}</a>
|
2017-07-04 06:00:32 +00:00
|
|
|
{% else %}
|
|
|
|
<a href="{{ site.paginate_path | prepend: '/' | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% if paginator.next_page %}
|
2020-01-29 09:58:18 +00:00
|
|
|
<a href="{{ paginator.next_page_path | replace: '//', '/' }}">Next »</a>
|
2017-07-04 06:00:32 +00:00
|
|
|
{% else %}
|
|
|
|
<span>Next »</span>
|
|
|
|
{% endif %}
|
2019-01-19 03:18:55 +00:00
|
|
|
</p></div>
|
2017-11-20 13:36:09 +00:00
|
|
|
{% endif %}
|