2017-03-07 23:12:17 +02:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
|
|
|
{% include page-intro.html %}
|
|
|
|
|
|
|
|
<main id="main" class="page-content" aria-label="Content">
|
|
|
|
<div class="index inner">
|
|
|
|
<div>{{ content }}</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<header class="section-title">
|
2017-03-09 22:48:54 +02:00
|
|
|
<h2>Posts{% if paginator.page > 1 %}{{ paginator.page | prepend: ' - Page '}}{{ paginator.total_pages | prepend: ' of ' }}{% endif %}</h2>
|
2017-03-07 23:12:17 +02:00
|
|
|
</header>
|
|
|
|
<div class="entries">
|
|
|
|
{% if site.gems contains 'jekyll-paginate' and page.paginate %}
|
|
|
|
{% comment %}
|
|
|
|
Add paginator.posts loop if jekyll-paginate plugin is enabled
|
|
|
|
and page.paginate == true
|
|
|
|
{% endcomment %}
|
|
|
|
{% include posts-paginated.html %}
|
|
|
|
{% else %}
|
|
|
|
{% include posts-all.html %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% include footer.html %}
|
|
|
|
</div>
|
|
|
|
</main>
|