diff options
author | Justin Mayer <entroP@gmail.com> | 2013-03-30 10:50:57 -0700 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2013-03-30 10:50:57 -0700 |
commit | 250484f57aeae2cfebe8eca4fb406bc768b71415 (patch) | |
tree | a69b08615b4c00cf6022ddbc238ce5343409c15a /notmyidea-cms/templates/article.html | |
parent | 100b0bc7a91454670c3f9761fa03241e2367b2e5 (diff) | |
download | pelican-themes-250484f57aeae2cfebe8eca4fb406bc768b71415.tar.gz |
Strip tags from article title. Fixes #71.
Diffstat (limited to 'notmyidea-cms/templates/article.html')
-rw-r--r-- | notmyidea-cms/templates/article.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notmyidea-cms/templates/article.html b/notmyidea-cms/templates/article.html index 79ad679..6f50605 100644 --- a/notmyidea-cms/templates/article.html +++ b/notmyidea-cms/templates/article.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}{{ article.title }}{% endblock %} +{% block title %}{{ article.title|striptags }}{% endblock %} {% block content %} <section id="content" class="body"> <article> |