diff options
Diffstat (limited to 'design/templates/archives')
-rw-r--r-- | design/templates/archives/resume-pubs.html | 9 | ||||
-rw-r--r-- | design/templates/archives/resume.html | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/design/templates/archives/resume-pubs.html b/design/templates/archives/resume-pubs.html index 7569a8f..daed46f 100644 --- a/design/templates/archives/resume-pubs.html +++ b/design/templates/archives/resume-pubs.html @@ -14,11 +14,16 @@ </ul> <main role="main"> <h1 class="hide">Publications</h1> + <h6>By Publication</h6> + <nav class="toc"><ul>{% for publisher in pub_list %} + <li><a href="#{{publisher.name|slugify}}">{{publisher.name}}</a></li>{%endfor%} + </ul></nav> {% regroup object_list by publisher.name as pub_list %}{% for pub in pub_list %} <ul class="publications-list"> - <li><h2>{{ pub.grouper }}</h2></li> + <li><h2 id="{{pub.grouper|slugify}}">{{ pub.grouper }}</h2></li> <ul>{% for object in pub.list %} - <li class=""><h3><a href="{{object.get_absolute_url}}">{{object.title|amp|smartypants|widont|safe}}</a></h3> + <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>{% endfor %} </ul>{% endfor %} </ul> diff --git a/design/templates/archives/resume.html b/design/templates/archives/resume.html index 40ede8c..c173460 100644 --- a/design/templates/archives/resume.html +++ b/design/templates/archives/resume.html @@ -22,7 +22,7 @@ <p>The personal section of my site, which is primarily about my travels can be found at <a href="https://luxagraf.net/">the root of this URL</a>.</p> -<p>If you’d like me to write, edit, develop or consult on a website, you can contact me at sng @ luxagraf.net. </p> +<p>If you’d like me to write, edit, develop or consult on a website, you can contact me at sng @ luxagraf.net. For consulting on writing or web development projects, please get in touch via my <a href="https://clarity.fm/scottgilbertson">clarity.fm profile</a>.</p> <p>Thank you for visiting.</p> |