diff options
Diffstat (limited to 'design/templates')
-rw-r--r-- | design/templates/404.html | 2 | ||||
-rw-r--r-- | design/templates/archives/map_data.html | 2 | ||||
-rw-r--r-- | design/templates/details/code.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/design/templates/404.html b/design/templates/404.html index bdef84f..d2ed067 100644 --- a/design/templates/404.html +++ b/design/templates/404.html @@ -1,5 +1,5 @@ {% extends 'base.html' %} -{% load typogrify %} +{% load typogrify_tags %} {% block pagetitle %}Luxagraf | Error 404 {% endblock %} {%block bodyid%}id="writing-detail" class="single"{%endblock%} diff --git a/design/templates/archives/map_data.html b/design/templates/archives/map_data.html index d235c8e..120704c 100644 --- a/design/templates/archives/map_data.html +++ b/design/templates/archives/map_data.html @@ -47,7 +47,7 @@ if (window.location.hash) { } //Set center map.setView(centerCoord, zoom); -L.tileLayer.provider('Esri.WorldTopoMap', {maxZoom: 18,attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Tiles © Esri and the GIS User Community'}).addTo(map); +L.tileLayer.provider('Esri.WorldTopoMap', {maxZoom: 18,attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Tiles © Esri and the GIS User Community'}).addTo(map); //loop through and set up markers/info windows {% for entry in object_list %} diff --git a/design/templates/details/code.html b/design/templates/details/code.html index 92ed7a8..8b72a18 100644 --- a/design/templates/details/code.html +++ b/design/templates/details/code.html @@ -43,7 +43,7 @@ article[role="main"] a { color: #b53a04;} <article role="main">{% for object in object_list %} <h1>{{object.name}}</h1> <div class="post-body-single"> - {{object.body_html|safe|smartypants|widont}} + {{object.body_html|smartypants|widont|safe}} </div>{% endfor %} </article> |