Merge pull request #1148 from phil-opp/zola-update

Fixes for zola update
This commit is contained in:
Philipp Oppermann
2022-10-03 13:25:15 +02:00
committed by GitHub
2 changed files with 5 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ feed_filename = "rss.xml"
compile_sass = true
minify_html = false
ignored_content = ["*/README.md", "LICENSE-CC-BY-NC"]
ignored_content = ["*/README.md", "*/LICENSE-CC-BY-NC"]
[markdown]
highlight_code = true

View File

@@ -22,11 +22,11 @@
{% block after_main %}
<hr>
<div class="PageNavigation">
{% if page.earlier %}
<a class="prev" href="{{ page.earlier.path | safe }}">&laquo; {{ page.earlier.title }}</a>
{% if page.lower %}
<a class="prev" href="{{ page.lower.path | safe }}">&laquo; {{ page.lower.title }}</a>
{% endif %}
{% if page.later %}
<a class="next" href="{{ page.later.path | safe }}">{{ page.later.title }} &raquo;</a>
{% if page.higher %}
<a class="next" href="{{ page.higher.path | safe }}">{{ page.higher.title }} &raquo;</a>
{% endif %}
</div>
<hr>