blob: 575313e40b2205d88e97c9f65f26a75b06b858c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{% extends 'base.html' %}
{% load typogrify_tags %}
{% load html5_datetime %}
{% load pagination_tags %}
{% block pagetitle %} Publications | Resume{% endblock %}
{% block metadescription %} {% endblock %}
{%block bodyid%}class="resume" id="publications-archive"{%endblock%}
{%block htmlclass%}class="detail"{% endblock %}
{% block primary %}
<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li>
<li><a href="/work/">Work</a> → </li>
<li><a href="/work/pubs/">Publications</a> → </li>
<li>{{publisher}}</li>
</ul>
<main role="main">
<h1 class="entry-title publisher">(Most) Stories published in {{publisher}}</h1>
<article>
{{ publisher.body_html|safe|widont|smartypants}}
</article>
<hr />
<ul class="publications-list">{% for object in object_list %}
<li class="pub-title"><h3><a href="{{object.url}}">{{object.title|amp|smartypants|widont|safe}}</a></h3>
<time class="dt-published published dt-updated" datetime="{{object.pub_date|date:'c'}}" itemprop="datePublished">{{object.pub_date|date:"F"}} <span>{{object.pub_date|date:"j, Y"}}</span></time> (<a href="{{object.get_absolute_url}}" title="local copy if publisher version is not available">local verson</a>)
</li>{% endfor %}
</ul>
</main>
{% endblock %}
|