blob: 0931ac48c9d4f2d7acde3a50759f7b0389f5fe76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends 'base.html' %}
{% load typogrify_tags %}
{%block bodyid%}id="essay-archive" class="archive"{%endblock%}
{% block content %}
<main role="main" id="essay-archive" class="essay-archive archive-list">
<h1 class="topic-hed">Essays</h1>
<ul>{% for object in object_list %}
<li class="h-entry hentry" itemscope itemType="http://schema.org/Article">
<span class="date dt-published hed-tertiary">{{object.pub_date|date:"F Y"}}</span>
<a class="u-url" href="{{object.get_absolute_url}}">
<h2 class="p-name hed-primary">{{object.title|safe|smartypants|widont}}</h2>
<p class="p-summary hed-secondary">{% if object.sub_title %}{{object.sub_title|safe|smartypants}}{%else%}{{object.metadescription}}{%endif%}</p>
</a>
</li>
{%endfor%}</ul>
</main>
{% endblock %}
|