diff options
author | luxagraf <sng@luxagraf.net> | 2019-04-12 20:11:23 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-04-12 20:11:23 -0500 |
commit | 55adc26c6987dc2e8585dd53ef4b8c05753b526d (patch) | |
tree | fe6693b1a5ae1372330ab118639d409c98206bbe /design/templates/fieldnotes/fieldnote_list.html | |
parent | 7d35c8dd5e28e52947a74b204f5eb53876bb383f (diff) |
fixed favicon link
Diffstat (limited to 'design/templates/fieldnotes/fieldnote_list.html')
-rw-r--r-- | design/templates/fieldnotes/fieldnote_list.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/design/templates/fieldnotes/fieldnote_list.html b/design/templates/fieldnotes/fieldnote_list.html index 089c694..c201382 100644 --- a/design/templates/fieldnotes/fieldnote_list.html +++ b/design/templates/fieldnotes/fieldnote_list.html @@ -3,7 +3,7 @@ {% load html5_datetime %} {% load pagination_tags %} {% block pagetitle %} Field Notes | luxagraf {% endblock %} -{% block metadescription %} Rough notes and sketches from the field {% endblock %} +{% block metadescription %}Rough notes and sketches from the field {% endblock %} {%block bodyid%}id="field-notes"{%endblock%} {% block primary %} @@ -19,8 +19,8 @@ {% autopaginate object_list 30 %} <ul class="fancy-archive-list">{% for object in object_list %}{% if object.slug != 'about' %} <li class="h-entry hentry" itemscope itemType="http://schema.org/Article"> - <a href="{{object.get_absolute_url}}"> - {% if object.featured_image %}<div class="circle-img-wrapper"><img src="{{object.featured_image.get_thumbnail_url}}" alt="{{object.featured_image.alt}}" /></div>{%endif%} + <a href="{{object.get_absolute_url}}" class="u-url"> + {% if object.featured_image %}<div class="circle-img-wrapper"><img src="{{object.featured_image.get_thumbnail_url}}" alt="{{object.featured_image.alt}}" class="u-photo" /></div>{%endif%} <span class="date dt-published">{{object.pub_date|date:"F d, Y"}}</span> <a href="{{object.get_absolute_url}}"> <h2>{{object.title|safe|smartypants|widont}}</h2> |