summaryrefslogtreecommitdiff
path: root/design/templates/details/resume.html
blob: c36f9868fe67028527eb41d36c9040a32771148c (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 typogrify_tags %}

{% block pagetitle %}{% endblock %}
{% block metadescription %}{% 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> &rarr; </li>
        <li>Resume</li>
    </ul>
    <main role="main">
    <article role="main">
        <h1>{{object.title|safe|smartypants|widont}}</h1>
        <p>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.</p>
        <div class="post--article" style="margin-top: 3em">
        {{object.body_html|safe|smartypants|widont}}
        </div>  
    </article>
    </main>
    {%endblock%}