diff options
author | luxagraf <sng@luxagraf.net> | 2016-02-08 12:53:07 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-02-08 12:53:07 -0500 |
commit | fdb951576ff642d160bd66cba82179fa2ca247d7 (patch) | |
tree | d9889ac6951f48f475ee88718da8e7f4afb8a345 /design/templates/details/note.html | |
parent | 34df0f81d9a4480eb33c77a22879218e35fa0b49 (diff) |
redid notes to make them self-contained and local
Diffstat (limited to 'design/templates/details/note.html')
-rw-r--r-- | design/templates/details/note.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/design/templates/details/note.html b/design/templates/details/note.html index 87a1e25..269d82a 100644 --- a/design/templates/details/note.html +++ b/design/templates/details/note.html @@ -20,7 +20,7 @@ <article class="h-entry"> <h1 class="p-name note--title hide">{{object.title|safe|amp|smartypants}}</h1> <div class="e-content"> - {{object.render|safe|amp|smartypants|urlizetrunc:45 }} + {{object.body_html|safe|amp|smartypants}} </div> <span class="p-author h-card"> <data class="p-name" value="Scott Gilbertson"></data> @@ -28,11 +28,11 @@ </span> <footer class="note--footer"> <p class="note--date"> - <a class="u-url" href="{{object.get_absolute_url}}" rel="bookmark"><time class="dt-published" datetime="{{object.date_created|html5_datetime}}">{{object.date_created|date:"F j, Y"}}</time></a> + <a class="u-url" href="{{object.get_absolute_url}}" rel="bookmark"><time class="dt-published" datetime="{{object.pub_date|html5_datetime}}">{{object.pub_date|date:"F j, Y"}}</time></a> </p>{% if object.location %} <p class="p-location h-adr note--location bl" itemprop="geo" itemscope itemtype="http://data-vocabulary.org/Geo"> <span class="p-locality">{{object.location.name|smartypants|safe}}</span>, - <span class="p-region">{{object.state_name}}</span>, + <span class="p-region">{{object.location.state}}</span>, <span class="p-country-name">{{object.location.state.country.name}}</span> <data class="p-latitude" value="{{object.latitude}}"></data> <data class="p-longitude" value="{{object.longitude}}"></data> |