diff options
Diffstat (limited to 'templates/includes/recent_entries_template.html')
-rw-r--r-- | templates/includes/recent_entries_template.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/includes/recent_entries_template.html b/templates/includes/recent_entries_template.html new file mode 100644 index 0000000..92d50dc --- /dev/null +++ b/templates/includes/recent_entries_template.html @@ -0,0 +1,18 @@ +{% load typogrify %} +<ul> + {% for object in object_list %} + <li> + <dl> + <dt> + <span class="post-image"><img src="{{object.get_thumbnail_url}}" alt="{{ object.title }}"/></span> + <h3><a href="{{object.get_absolute_url}}" title="{%if object.title_keywords%}{{object.title_keywords}}{%else%}{{object.title}}{%endif%}">{{object.title|smartypants|widont|safe}}</a></h3> + </dt> + <dd> + <span class="date">{{object.pub_date|date:"F j, Y"}} {% ifequal object.location.state.country.name "United States" %}({{object.location.name|smartypants|safe}}, {{object.location.state.name}}){%else%}({{object.location.name|smartypants|safe}}, {{object.location.state.country.name}}){%endifequal%}</span> + {{object.dek|safe}} + <span class="more"><a href="{{object.get_absolute_url}}" title="{{object.title}}">Read it »</a></span> + </dd> + </dl> + </li> + {% endfor %} +</ul>
\ No newline at end of file |