aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates
diff options
context:
space:
mode:
Diffstat (limited to 'libpathod/templates')
-rw-r--r--libpathod/templates/frame.html8
-rw-r--r--libpathod/templates/index.html6
2 files changed, 7 insertions, 7 deletions
diff --git a/libpathod/templates/frame.html b/libpathod/templates/frame.html
index b0c298b6..3dd7fbf8 100644
--- a/libpathod/templates/frame.html
+++ b/libpathod/templates/frame.html
@@ -18,9 +18,9 @@
<div class="container">
<a class="brand" href="/">Pathod</a>
<ul class="nav">
- <li {% if section== "main" %} class="active" {% end %}><a href="/">Main</a></li>
- <li {% if section== "log" %} class="active" {% end %}><a href="/log">Log</a></li>
- <li {% if section== "help" %} class="active" {% end %}><a href="/help">Help</a></li>
+ <li {% if section== "main" %} class="active" {% endif %}><a href="/">Main</a></li>
+ <li {% if section== "log" %} class="active" {% endif %}><a href="/log">Log</a></li>
+ <li {% if section== "help" %} class="active" {% endif %}><a href="/help">Help</a></li>
</ul>
</div>
</div>
@@ -29,7 +29,7 @@
<div class="container">
{% block body %}
- {% end %}
+ {% endblock %}
<hr>
<p>by <a href="http://corte.si">Aldo Cortesi</a> </p>
diff --git a/libpathod/templates/index.html b/libpathod/templates/index.html
index 396137d6..07145b85 100644
--- a/libpathod/templates/index.html
+++ b/libpathod/templates/index.html
@@ -1,4 +1,4 @@
-{% extends frame.html %}
+{% extends "frame.html" %}
{% block body %}
- {% include previewform.html %}
-{% end %}
+ {% include "previewform.html" %}
+{% endblock %}