blob: 06de13e7eee02192983ed71f8d18b790638c5d9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends 'base.html' %}
{% load typogrify_tags %}
{% load comments %}
{% block pagetitle %}essay - archive{% endblock %}
{% block metadescription %}luxagraf essays - thoughts things that aren't strictly travel related.{% endblock %}
{% block primary %}<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li>
<li>Essays</li>
</ul>
<main role="main" id="essay-archive" class="src-archive">
<h1>Essays</h1>
<h4 class="subhead">Stuff that isn't really travel related</h4>{% for object in object_list %}
<article class="h-entry hentry {% cycle 'odd' 'even' %} {% cycle 'first' 'second' 'third' %}" itemscope itemType="http://schema.org/Article">
<h2><a href="{{object.get_absolute_url}}">{{object.title|safe|smartypants|widont}}</a></h2>
<p>{{object.meta_description|safe|smartypants|widont}} <a href="{{object.get_absolute_url}}">Read more.</a></p>
</article>
{%endfor%}
</main>
{%endblock%}
|