blob: f38771adcb25fc66f558564ad214a4b0e3e43314 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends 'base.html' %}
{% load typogrify_tags %}
{%block bodyid%}id="essay-archive" class="archive"{%endblock%}
{% block content %}
<div class="content-narrow">
{% for obj in object_list %}
<article class="h-entry hentry" itemscope itemType="http://schema.org/Article">
<span class="date dt-published blok">{{obj.pub_date|date:"F d, Y"}}</span>
<h3 class="p-name hed-primary"><a class="u-repost-of" href="{{obj.link_url}}" title="Read the original story">{{obj.title|safe|smartypants|widont}}</a> <a class="star u-url" href="{{obj.get_absolute_url}}">★</a></h3>
<div class="p-summary">{{obj.body_html|safe|smartypants}}</div>
</article>
{% endfor %}
</div>
{% endblock %}
|