summaryrefslogtreecommitdiff
path: root/templates/archives/topics.html
diff options
context:
space:
mode:
authorluxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f>2010-09-14 22:41:12 +0000
committerluxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f>2010-09-14 22:41:12 +0000
commitad23af9549c4bc23ab345966d977e1f5d69ac03d (patch)
tree32b5cf3f81f10b0716aa0a9959c3ded9118f528b /templates/archives/topics.html
parenta851eba9a0f5928d8c53eea443fa2e8ba337d3a5 (diff)
added microdata to breadcrumbs
Diffstat (limited to 'templates/archives/topics.html')
-rw-r--r--templates/archives/topics.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/templates/archives/topics.html b/templates/archives/topics.html
deleted file mode 100644
index 008ab6f..0000000
--- a/templates/archives/topics.html
+++ /dev/null
@@ -1,39 +0,0 @@
-{% extends 'base.html' %}
-{% load typogrify %}
-{% load pagination_tags %}
-
-{% block pagetitle %}Luxagraf | {% if region %}Travel Writing from {{region.name|title|smartypants|safe}}{%else%}Travel Writing from Around the World {%endif%}{% endblock %}
-{% block metadescription %}{% if region %}Travel writing, essays and dispatches from {{region.name|title|smartypants|safe}}{%else%}Travel writing, essays and dispatches from around the world{%endif%}{% endblock %}
-{%block bodyid%}id="writing"{%endblock%}
-
-
-{% block primary %}
- <article>
- <h1>{{topic.header}}</h1>
- <span class="all-link"><a href="/writing/1/" title="see all writing">{ View All Writing }</a></span>
- <ul id="writing-archive">
- {% autopaginate object_list 10 %}
- {% for object in object_list %}
- <li>
- <h3 class="title"><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>
-
- {%if object.thumbnail%}<img src="{{object.get_thumbnail_url}}" alt="{{ object.title }}" class="post-image" />{%endif%}
-
- <time datetime="{{object.pub_date}}">{{object.pub_date|date:"F j, Y"}}</time> &bull; <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>
-
- <p class="intro">{{object.dek|safe}} <a class="permalink" href="{{object.get_absolute_url}}" title="{{object.title}}">Read&nbsp;it&nbsp;&raquo;</a></p>
-
-
- </li>
- {% endfor %}
- </ul>
-
- <section id="pagination">
- <ul>{% paginate %}
- </ul>
- </section>
- </article>
-{% endblock %}
-
-
-