blob: ff16bbe33a2e018c40f958ef2973fb228f55d19d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends 'base.html' %}
{% load typogrify_tags %}
{% block pagetitle %}{% endblock %}
{% block metadescription %}{% 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="/resume">Resume</a>{% if object.title != "Resume" %} → {%endif%}</li>
{% if object.title != "Resume" %}<li><a href="/resume/pubs/">Publications</a></li>{%endif%}
</ul>
<main>
<article>
{% if object.title != "Resume" %}<h1 class="post-header">{{object.title|safe|smartypants|widont}}</h1>{% endif %}
{% if object.publisher %}<p><i>This article was published in {{object.publisher}}, you can view <a href="{{object.url}}">the original</a> there, complete with graphics, comments and other fun stuff.</i></p>{% endif %}
<div class="post-article" style="margin-top: 3em">
{{object.body_html|safe|smartypants|widont}}
</div>
</article>
</main>
{%endblock%}
|