blob: 500dfcb0ddf2c80767835c24f01a26b65a8fb707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% 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">
<span class="date dt-published blok">{{object.pub_date|date:"F d, Y"}}</span>
<h3 class="hed-primary"><a class="u-url" 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>
</article>
</div>
{% endblock %}
|