diff options
-rw-r--r-- | design/templates/archives/resume-pubs-by-pub.html | 6 | ||||
-rw-r--r-- | design/templates/archives/resume-pubs.html | 2 | ||||
-rw-r--r-- | design/templates/details/resume.html | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/design/templates/archives/resume-pubs-by-pub.html b/design/templates/archives/resume-pubs-by-pub.html index 8a3cfb8..bb2c624 100644 --- a/design/templates/archives/resume-pubs-by-pub.html +++ b/design/templates/archives/resume-pubs-by-pub.html @@ -14,12 +14,12 @@ <li>{{publisher}}</li> </ul> <main role="main"> - <h1 class="entry-title publisher">Stories published in {{publisher}}</h1> + <h1 class="entry-title publisher">(Most) Stories published in {{publisher}}</h1> {{ publisher.body_html|safe|widont|smartypants}} <hr /> <ul class="publications-list">{% for object in object_list %} - <li class="pub-title"><h3><a href="{{object.get_absolute_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> + <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> diff --git a/design/templates/archives/resume-pubs.html b/design/templates/archives/resume-pubs.html index 1176d12..19c572a 100644 --- a/design/templates/archives/resume-pubs.html +++ b/design/templates/archives/resume-pubs.html @@ -23,7 +23,7 @@ <h2 id="{{pub.grouper|slugify}}">{{ pub.grouper }}</h2> <ul>{% for object in pub.list %}{% if forloop.counter < 8 %} <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> + <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}}">local verson</a>) </li>{%endif%}{% endfor %} </ul> <a href="{% url "resume:live_publisher_redirect" pub.grouper|slugify %}">View all articles published by {{pub.grouper}}</a> diff --git a/design/templates/details/resume.html b/design/templates/details/resume.html index 6274e34..c36f986 100644 --- a/design/templates/details/resume.html +++ b/design/templates/details/resume.html @@ -11,6 +11,8 @@ </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> |