diff options
Diffstat (limited to 'theme/templates/article.html')
-rwxr-xr-x | theme/templates/article.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/theme/templates/article.html b/theme/templates/article.html index 6c57dbf..1328834 100755 --- a/theme/templates/article.html +++ b/theme/templates/article.html @@ -1,10 +1,10 @@ {% extends "base.html" %} -{% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %} +{% block title %}{{ SITENAME }} - {{ article.title |striptags }}{% endblock %} {% block content %} <article class="post"> - <h1 class="page_title"><a href="{{ article.url }}" rel="bookmark" title="{{SITENAME}} - {{ article.title }}">{{ article.title }}</a></h1> + <h1 class="page_title"><a href="{{ article.url }}">{{ article.title }}</a></h1> {%include 'meta.html'%} <section class="post_content"> |