{% 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%}