diff options
author | luxagraf <sng@luxagraf.net> | 2023-05-07 08:02:43 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-05-07 08:02:43 -0400 |
commit | 1dde8abfac7a8f84f5ff30d424e417f5d6f0b273 (patch) | |
tree | 696d9e55d2ed7380123f95e8a5625334d38b3b5d | |
parent | 048ffbf8cc09a99f7ec5152f4d83a531d56285bc (diff) |
film: fixed template bug
-rw-r--r-- | app/posts/templates/posts/film_detail.html | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/app/posts/templates/posts/film_detail.html b/app/posts/templates/posts/film_detail.html index b088c56..390eb3c 100644 --- a/app/posts/templates/posts/film_detail.html +++ b/app/posts/templates/posts/film_detail.html @@ -77,33 +77,6 @@ </aside>{% endif %} </div>{%endif%} </article> - </main> - {% if object.related.all %}<div class="article-afterward related"> - <div class="related-bottom"> - <h6 class="hedtinycaps">You might also enjoy</h6> - <div class="archive-grid-quad">{% for object in related %} - <div class="archive-grid-card archive-grid-card-simple" itemscope itemtype="https://schema.org/Article"> - <a href="{{object.get_absolute_url}}" title="{{object.title}}"> - <div class="card-image-tiny"> - {% if object.featured_image %} - {% include "lib/img_archive.html" with image=object.featured_image nolightbox=True %} - {%endif%} - </div> - <h4 class="p-name card-hed" itemprop="headline">{% if object.title %}{{object.title|safe|smartypants|widont}}{% else %}{{object.common_name}}{%endif%}</h4> - <p class="p-author author hide" itemprop="author"><span class="byline-author" itemscope itemtype="https://schema.org/Person"><span itemprop="name">Scott Gilbertson</span></span></p> - <span class="card-smcaps"> - {% if object.location %}<span class="p-location h-adr adr card-location" itemprop="contentLocation" itemscope itemtype="https://schema.org/Place"> - {% if object.location.country_name == "United States" %}{{object.location.state_name}}{%else%}{{object.location.country_name}}{%endif%} - </span>{%endif%} - {% if object.location and object.model_name.model != 'page' %}–{%endif%} - {% if object.model_name.model != 'page' %}<time class="dt-published published dt-updated" datetime="{{object.pub_date|date:'c'}}"><span>{{object.pub_date|date:" Y"}}</span></time>{%endif%} - </span> - </a> - </div> - {% endfor %}</div> - </div> - </div>{%endif%} - {% with object.get_next_published as next %} {% with object.get_previous_published as prev %} <nav class="page-navigation"> |