Newer
Older
---
{% include top.html %}
<body>
{% include header.html %}
<main>
{% include title_image.html%}
<section>
{% if paginator.total_pages > 1 %}
<nav class="page-navigation grid-container">
<div class="pagination-container grid-item">
{% if paginator.previous_page %}
<span>
<a href="{{ paginator.previous_page_path | relative_url }}">
<i class="fas fa-backward"></i>
</a>
</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span> {{ page }} </span>
{% elsif page == 1 %}
<span>
<a href="{{ 'posts/' | relative_url }}"> {{ page }} </a>
</span>
{% else %}
<span>
<a href="{{ site.paginate_path
| relative_url
| replace: ':num', page }}">
{{ page }}
</a>
</span>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<span>
<a href="{{ paginator.next_page_path | relative_url }}">
<i class="fas fa-forward"></i>
</a>
</span>
{% endif %}
</div>
<div class="rss-posts-container grid-item">
<a class="rss-posts-button" href="{{ '/feed/news.xml' | relative_url }}"
title="Subscribe to HIFIS Blog Posts RSS Feed (RSS Reader required)"
type="application/atom+xml"
download>
<i class="fas fa-rss"></i>
</a>
<a href="https://lists.desy.de/sympa/subscribe/hifis-newsletter"
title="Subscribe to HIFIS Newsletter - also unsubscribe">
<i class="fas fa-bell"></i>
</a>
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
94
95
96
97
98
99
100
101
</div>
</nav>
{% endif %}
{% for post in paginator.posts %}
<article class="list-entry">
<div class="preview">
<h1>
<a href="{{ post.url | relative_url }}">
{{ post.title }}
</a>
</h1>
{% if post.excerpt_separator != '' %}
<div class="excerpt-content">
{{ post.excerpt }}
</div>
{% else %}
<div class="no-excerpt-content">
{{ post.content }}
</div>
{% endif %}
<a href="{{ post.url | relative_url }}" >
<span> more… </span>
</a>
</div>
<div class="digest-container">
{% include blog_post/metadata.html
authors = post.authors
date = post.date
categories = post.categories
tags = post.tags %}
</div>
</article>
{% endfor %}
{% if paginator.total_pages > 1 %}
<nav class="page-navigation grid-container">
<div class="pagination-container grid-item">
{% if paginator.previous_page %}
<span>
<a href="{{ paginator.previous_page_path | relative_url }}">
<i class="fas fa-backward"></i>
</a>
</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span> {{ page }} </span>
{% elsif page == 1 %}
<span>
<a href="{{ 'posts/' | relative_url }}"> {{ page }} </a>
</span>
{% else %}
<span>
<a href="{{ site.paginate_path
| relative_url
| replace: ':num', page }}">
{{ page }}
</a>
</span>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<span>
<a href="{{ paginator.next_page_path | relative_url }}">
<i class="fas fa-forward"></i>
</a>
</span>
{% endif %}
</div>
<div class="rss-posts-container grid-item">
<a class="rss-posts-button" href="{{ '/feed/news.xml' | relative_url }}"
title="Subscribe to HIFIS Blog Posts RSS Feed"
type="application/atom+xml"
download>
<i class="fas fa-rss"></i>
</a>
<a href="https://lists.desy.de/sympa/subscribe/hifis-newsletter"
title="Subscribe to HIFIS Newsletter - also unsubscribe">
<i class="fas fa-bell"></i>
</a>