Skip to content

Commit

Permalink
fix(article): fix regression introduced in 7ca7331
Browse files Browse the repository at this point in the history
  • Loading branch information
talha131 committed Jul 6, 2019
1 parent 18ce142 commit 2c23961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/article.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ <h1>{{ title }}</h1>
{% set ptitle = article.prev_article.title|striptags|e %}
{% set pv_title = article.prev_article.title|striptags %}
{%if article.prev_article.subtitle %}
{% set pv_title = pv_title + ' ' + '<small classs="subtitle">' + article.prev_article.subtitle|striptags + '</small>' %}
{% set pv_title = pv_title + ' ' + '<small class="subtitle">' + article.prev_article.subtitle|striptags + '</small>' %}
{% set ptitle = ptitle + ' - ' + article.prev_article.subtitle|e %}
{% endif %}
<li class="previous-article">« <a href="{{ SITEURL }}/{{ article.prev_article.url }}" title="Previous: {{ ptitle }}">{{ pv_title }}</a></li>
Expand Down

0 comments on commit 2c23961

Please sign in to comment.