summaryrefslogtreecommitdiff
path: root/templates/includes/recent_entries_template.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2011-01-20 18:56:55 -0500
committerluxagraf <sng@luxagraf.net>2011-01-20 18:56:55 -0500
commit294820d74fbfa6f54d689084d4fd689a2ad8a1e9 (patch)
treea3a163217cf09d277f9451ac9e635d8b787f9594 /templates/includes/recent_entries_template.html
parent6dca31fffb9dd52014a85e01c30a142b933d86ef (diff)
moved template build files to bin folder and updated file paths throughout apps
Diffstat (limited to 'templates/includes/recent_entries_template.html')
-rw-r--r--templates/includes/recent_entries_template.html10
1 files changed, 0 insertions, 10 deletions
diff --git a/templates/includes/recent_entries_template.html b/templates/includes/recent_entries_template.html
deleted file mode 100644
index 2140cb6..0000000
--- a/templates/includes/recent_entries_template.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% load typogrify %}{% for object in object_list %}<article class="{% cycle 'col1' 'col2' %}">
- <h1><a href="{{object.get_absolute_url}}" title="{%if object.title_keywords%}{{object.title_keywords}}{%else%}{{object.title}}{%endif%}">{{object.title|smartypants|widont|safe}}</a></h1>
- <p class="dateline">
- <span class="location">{% if object.location.state.country.name == "United States" %}{{object.location.name|smartypants|safe}}, <a href="/writing/united-states/1/" title="travel writing from the United States">{{object.location.state.name}}</a>{%else%}{{object.location.name|smartypants|safe}}, <a href="/writing/{{object.location.state.country.slug}}/1/" title="travel writing from {{object.location.state.country.name}}">{{object.location.state.country.name}}</a>{%endif%}</span> &nbsp;
- <time datetime="{{object.pub_date|date:'c'}}">{{object.pub_date|date:"m/d/y"}}</time>
- </p>
- {%if object.thumbnail%}<img src="{{object.get_thumbnail_url}}" alt="{{ object.title }}" class="post-image" />{%endif%}
- <p class="hyphenate">{{object.dek|safe}}</p>
- <span class="button"><a class="permalink" href="{{object.get_absolute_url}}" title="{{object.title}}">More&nbsp;&raquo;</a></span>
- </article>{% endfor %}