blob: 03b2888d97169fdeb1463660a304a523b3822683 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends 'base.html' %}
{% load chunks %}
{% load typogrify %}
{%block bodyid%}id="home"{%endblock%}
{% block primary %}
<article>
<section id="featured-article">
<h1><a href="{{featured.get_absolute_url}}">{{featured.title|widont|smartypants|safe}}</a></h1>
<span class="byline"><time datetime="{{featured.pub_date}}">{{featured.pub_date|date:"F j, Y"}}</time> • <span class="location">{% ifequal featured.location.state.country.name "United States" %}{{featured.location.name|smartypants|safe}}, <a href="/writing/united-states/1/" title="travel writing from the United States">{{featured.location.state.name}}</a>{%else%}{{featured.location.name|smartypants|safe}}, <a href="/writing/{{featured.location.state.country.slug}}/1/" title="travel writing from {{featured.location.state.country.name}}">{{featured.location.state.country.name}}</a>{%endifequal%}</span></span>
{{featured.lede|smartypants|widont|safe}}</p>
<span><a href="{{featured.get_absolute_url}}" title="{{featured.title}}">More »</a></span>
</section>
<section id="writing-archive">
<h2>Recently</h2>
{% include 'includes/recent_entries.html' %}
</section>
</article>
{% endblock %}
|