Fix up for django 1.10
[sommitrealweird.git] / sommitrealweird / blog / templates / blog / single_entry_rst.html
index 2fa2af2a9bca92a1c25c30f96454ade1de8d2a28..695df776257a034672425a962163e783c4ffffcc 100644 (file)
@@ -1,10 +1,8 @@
 {% extends "base.html" %}
 
-{% load markup %}
+{% load xhtml11rst %}
 
-{% block title %}
-{{ entry.title }}
-{% endblock %}
+{%block title %}{{ entry.title }}{% endblock %}
 
 {% block content %}
 <h1>{{ entry.title }}</h1>
@@ -26,6 +24,6 @@
         {% endif %}
     {% endfor %}
     {% endif %}
-    <a href="{{ entry.get_absolute_url }}">permalink</a>
+    <a href="{{ entry.get_absolute_url }}">permalink</a>
 </p>
 {% endblock %}