diff options
author | luxagraf <sng@luxagraf.net> | 2018-10-18 16:17:39 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-10-18 16:17:39 -0500 |
commit | 9d88527a997ced7e01b67bcfee6ba10666f77deb (patch) | |
tree | b1cbe6e35c5f3a0d6c57278bea0544a66056cd20 /design/templates/details | |
parent | c1521850e122bc14b77b24498fa564e282883c7f (diff) |
cleaned up resume section to fit in new design
Diffstat (limited to 'design/templates/details')
-rw-r--r-- | design/templates/details/resume.html | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/design/templates/details/resume.html b/design/templates/details/resume.html index 5c47b2c..ff16bbe 100644 --- a/design/templates/details/resume.html +++ b/design/templates/details/resume.html @@ -4,16 +4,18 @@ {% 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>Resume</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 role="main"> - <article role="main"> - <h1>{{object.title|safe|smartypants|widont}}</h1> - <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> - <div class="post--article" style="margin-top: 3em"> + <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> |