[SSG] Move archives, subscribe, donate into directories.

Allow templates to be relative using {{ relative }} which can be set by
caller.
This commit is contained in:
2020-03-10 21:21:54 +05:30
parent 401e1b64f0
commit 329039541a
4 changed files with 36 additions and 24 deletions

View File

@@ -2,6 +2,6 @@
{% block left_content %}
<ul class="archives">
{% for episode in episodes %}
<li><a href="{{ episode.slug }}">{{ episode.title }}</a></li>
<li><a href="../{{ episode.slug }}">{{ episode.title }}</a></li>
{% endfor %}
{% endblock %}