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
|
compile_sass = true
|
||||||
minify_html = false
|
minify_html = false
|
||||||
|
|
||||||
ignored_content = ["*/README.md", "LICENSE-CC-BY-NC"]
|
ignored_content = ["*/README.md", "*/LICENSE-CC-BY-NC"]
|
||||||
|
|
||||||
[markdown]
|
[markdown]
|
||||||
highlight_code = true
|
highlight_code = true
|
||||||
|
|||||||
@@ -22,11 +22,11 @@
|
|||||||
{% block after_main %}
|
{% block after_main %}
|
||||||
<hr>
|
<hr>
|
||||||
<div class="PageNavigation">
|
<div class="PageNavigation">
|
||||||
{% if page.earlier %}
|
{% if page.lower %}
|
||||||
<a class="prev" href="{{ page.earlier.path | safe }}">« {{ page.earlier.title }}</a>
|
<a class="prev" href="{{ page.lower.path | safe }}">« {{ page.lower.title }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if page.later %}
|
{% if page.higher %}
|
||||||
<a class="next" href="{{ page.later.path | safe }}">{{ page.later.title }} »</a>
|
<a class="next" href="{{ page.higher.path | safe }}">{{ page.higher.title }} »</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
|
|||||||
Reference in New Issue
Block a user