aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/index.html4
-rw-r--r--templates/post-page.html1
2 files changed, 2 insertions, 3 deletions
diff --git a/templates/index.html b/templates/index.html
index 795d85a..575141f 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,7 +1,5 @@
{% extends "base.html" %}
{% block content %}
-<h1 class="title">
- This is a blog made with Zola.
-</h1>
+{{ section.content | safe }}
{% endblock content %}
diff --git a/templates/post-page.html b/templates/post-page.html
index 5bb6f40..bfb891c 100644
--- a/templates/post-page.html
+++ b/templates/post-page.html
@@ -6,5 +6,6 @@
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
+<p><a href="{{ get_url(path='@/posts/_index.md') }}"><-- Back</a></p>
{{ page.content | safe }}
{% endblock content %}