diff options
author | luxagraf <sng@luxagraf.net> | 2020-11-13 13:09:23 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-11-13 13:09:23 -0500 |
commit | 501e8f37c0e4aeb7b4a7f82f91151a9f4a8354fc (patch) | |
tree | 135a9dab7c0e5dde1b42bad033a4c49f946256d0 /app/posts | |
parent | 72b75160ff1e617b551a86002d86f0deb08a5570 (diff) |
fixed a bug in field not list template
Diffstat (limited to 'app/posts')
-rw-r--r-- | app/posts/templates/posts/fieldnote_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/templates/posts/fieldnote_list.html b/app/posts/templates/posts/fieldnote_list.html index 06d134e..14d61c0 100644 --- a/app/posts/templates/posts/fieldnote_list.html +++ b/app/posts/templates/posts/fieldnote_list.html @@ -30,7 +30,7 @@ <li class="h-entry hentry" itemscope itemType="http://schema.org/Article"> <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="datei">Field Note: </span><span class="date dt-published">{{object.pub_date|date:"F d, Y"}}</span> + <span class="datei"></span><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> {% if object.subtitle %}<h3 class="p-summary">{{object.subtitle|safe|smartypants|widont}}</h3>{%endif%} |