diff options
author | luxagraf <sng@luxagraf.net> | 2014-05-28 03:15:17 +0000 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-05-28 03:15:17 +0000 |
commit | d6379dbc06393d286eedfd19c842f824100f2968 (patch) | |
tree | 33202251b122aa0d9a12ba47c6ceedbf7b8b1012 /design | |
parent | f840e5310215ffb894ea8a648ea03d463d029fbc (diff) |
bug fixes, lots o bugs
Diffstat (limited to 'design')
-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> |