blob: 1aa410fbe116d0c5da1a80312c0dfb1a58b3f189 (
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">
<article class="h-entry hentry" itemscope itemType="http://schema.org/Article">
<div class="e-content">
<span class="date dt-published blok">{{object.pub_date|date:"F d, Y"}}</span>
<h3 class="p-name hed-primary"><a class="u-bookmark-of" href="{{object.link_url}}" title="Read the original story">{{object.title|safe|smartypants|widont}}</a></h3>
<div class="p-summary">{{object.body_html|safe|smartypants}}</div>
</div>
</article>
</div>
{% endblock %}
|