diff options
author | luxagraf <sng@luxagraf.net> | 2020-11-17 14:31:28 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-11-17 14:31:28 -0500 |
commit | 50c8625fb6a8b6684aca9c3e44283e069bcaca1e (patch) | |
tree | 73b6d8ee3031b1780fba1d3c966fe18bdef6a71e /app | |
parent | 8d5e132d93648038bbe75396e75b0d9387658351 (diff) |
bug fix
Diffstat (limited to 'app')
-rw-r--r-- | app/posts/templates/posts/src_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/templates/posts/src_list.html b/app/posts/templates/posts/src_list.html index b060421..21a8c4e 100644 --- a/app/posts/templates/posts/src_list.html +++ b/app/posts/templates/posts/src_list.html @@ -19,7 +19,7 @@ <span class="date dt-published">{{object.pub_date|date:"F Y"}}</span> <a href="{{object.get_absolute_url}}"> <h2>{{object.title|safe|smartypants|widont}}</h2> - <p class="p-summary">{% if object.subtitle %}{{object.subtitle}}{%else}{{object.meta_description|safe|smartypants|widont}}{%endif%}</p> + <p class="p-summary">{% if object.subtitle %}{{object.subtitle}}{%else%}{{object.meta_description|safe|smartypants|widont}}{%endif%}</p> </a> </li> {%endif%}{%endfor%}</ul> |