blob: 0f4af61cbe61a3882492feb4b10152c8b7e37b0a (
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>
<aside class="meta"><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></aside>
{{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 %}
|