summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/index.html2
-rw-r--r--templates/section.html6
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/index.html b/templates/index.html
index a83e6c3..9f68a00 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -15,7 +15,7 @@
<li>Published On: {{post.date}}</li>
<li>Tags:
{% for tag in post.tags %}
- {{ tag }}{{ ", " if not loop.last else "" }}
+ <a href='/tags/{{tag}}.html'>{{ tag }}</a>{{ ", " if not loop.last else "" }}
{% endfor %}
</ul>
diff --git a/templates/section.html b/templates/section.html
index 2a9e863..f713ad8 100644
--- a/templates/section.html
+++ b/templates/section.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}Section{% endblock %}
+{% block title %}{% if title is defined %}{{title}}{% else %}Section{% endif %}{% endblock %}
{% block body %}
@@ -15,11 +15,11 @@
<li>Published On: {{post.date}}</li>
<li>Tags:
{% for tag in post.tags %}
- {{ tag }},
+ <a href='/tags/{{tag}}.html'>{{ tag }}</a>{{ ", " if not loop.last else "" }}
{% endfor %}
</ul>
{% endfor %}
</ul>
-{% endblock %} \ No newline at end of file
+{% endblock %}