diff options
author | luxagraf <sng@luxagraf.net> | 2019-02-24 19:36:29 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-02-24 19:36:29 -0600 |
commit | 8751f40ce6fd5531b58ab95cd347c87c59ffcadc (patch) | |
tree | f8f747b99911f6698ecce98c810543c568645f5b /design/templates/details/src_entry.html | |
parent | 58e384afdf8022fd560d53583cd1d0c5e01f62aa (diff) |
redid src to make essays
Diffstat (limited to 'design/templates/details/src_entry.html')
-rw-r--r-- | design/templates/details/src_entry.html | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/design/templates/details/src_entry.html b/design/templates/details/src_entry.html index 4f4523a..91532dc 100644 --- a/design/templates/details/src_entry.html +++ b/design/templates/details/src_entry.html @@ -4,7 +4,7 @@ {% block pagetitle %}{{object.title|striptags}} | luxagraf:src{% endblock %} -{% block bodyid %}class="src detail"{% endblock %} +{% block bodyid %}class="src detail single"{% endblock %} {% block metadescription %}{% autoescape on %}{{object.meta_description|striptags|safe}}{% endautoescape %}{% endblock %} {%block extrahead%} <meta property="og:type" content="article" /> @@ -29,12 +29,17 @@ </ul> <main role="main"> <article class="hentry post-article{% with object.get_template_name_display as t %}{%if t == "double" or t == "double-dark" %} post--article--double{%endif%}{%endwith%}" itemscope itemType="http://schema.org/Article"> - <header id="header" class="post--header {% with object.get_template_name_display as t %}{%if t == "double" or t == "double-dark" %}post--header--double{%endif%}{%endwith%}"> + <header id="header" class="post-header {% with object.get_template_name_display as t %}{%if t == "double" or t == "double-dark" %}post--header--double{%endif%}{%endwith%}"> <h1 class="p-name entry-title post--title" itemprop="headline">{%if object.template_name == 1 or object.template_name == 3 %}{{object.title|safe|smartypants}}{%else%}{{object.title|safe|smartypants|widont}}{%endif%}</h1> - {% if object.slug != 'about' %}<time class="dt-published published dt-updated post--date" datetime="{{object.pub_date|date:'c'}}" itemprop="datePublished">{{object.pub_date|date:"F"}} <span>{{object.pub_date|date:"j, Y"}}</span></time>{%endif%} - {% if object.topics.all %}<span class="src-topics">Topics: {% for topic in object.topics.all%} <a href="/src/topic/{{topic.slug}}">{{topic.name}}</a>{%if forloop.last%}{%else%}, {%endif%}{%endfor%}</span>{%endif%} - <p class="p-author author hide" itemprop="author"><span class="byline-author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">Scott Gilbertson</span></span></p> + <h2 class="post-subtitle">{{object.meta_description|smartypants|safe}}</h2> + <div class="post-dateline"> + {% if object.topics.all %}<h4 class="post-source">Topics: {% for topic in object.topics.all%} <a href="/src/topic/{{topic.slug}}">{{topic.name}}</a>{%if forloop.last%}{%else%}, {%endif%}{%endfor%}</h4>{%endif%} + {% if object.slug != 'about' %}<time class="dt-published published dt-updated post-date" datetime="{{object.pub_date|date:'c'}}" itemprop="datePublished">{{object.pub_date|date:"F"}} <span>{{object.pub_date|date:"j, Y"}}</span></time>{%endif%} + <p class="p-author author hide" itemprop="author"><span class="byline-author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">Scott Gilbertson</span></span></p> + </div> </header> + + <div id="article" class="e-content entry-content post-body post-body-{% with object.template_name as t %}{%if t == 0 or t == 2 %}single{%endif%}{%if t == 1 or t == 3 %}double{%endif%}{%endwith%}" itemprop="articleBody"> {{object.body_html|safe|smartypants|widont}} </div> |