mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
Merge pull request #1148 from phil-opp/zola-update
Fixes for zola update
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -22,11 +22,11 @@
|
||||
{% block after_main %}
|
||||
<hr>
|
||||
<div class="PageNavigation">
|
||||
{% if page.earlier %}
|
||||
<a class="prev" href="{{ page.earlier.path | safe }}">« {{ page.earlier.title }}</a>
|
||||
{% if page.lower %}
|
||||
<a class="prev" href="{{ page.lower.path | safe }}">« {{ page.lower.title }}</a>
|
||||
{% endif %}
|
||||
{% if page.later %}
|
||||
<a class="next" href="{{ page.later.path | safe }}">{{ page.later.title }} »</a>
|
||||
{% if page.higher %}
|
||||
<a class="next" href="{{ page.higher.path | safe }}">{{ page.higher.title }} »</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
Reference in New Issue
Block a user