diff options
author | Justin Mayer <entroP@gmail.com> | 2014-01-09 11:24:15 -0800 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2014-01-09 11:24:15 -0800 |
commit | 6b057e4f9bb931e2db52c49a84bbe457f9f3910e (patch) | |
tree | e831da67f619cd7630cd42f1d57b332c7bed9312 /Just-Read/templates/index.html | |
parent | 6552e3bedb3489d58cd1f97917243eee02b813ee (diff) | |
parent | 2983cd82d6fea9b6523d946d1fb0b7c25e0c9cef (diff) | |
download | pelican-themes-6b057e4f9bb931e2db52c49a84bbe457f9f3910e.tar.gz |
Merge pull request #151 from palmstrom/fix-title
removed tags from title attribute value
Diffstat (limited to 'Just-Read/templates/index.html')
-rw-r--r-- | Just-Read/templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Just-Read/templates/index.html b/Just-Read/templates/index.html index f1dab78..4e4fd64 100644 --- a/Just-Read/templates/index.html +++ b/Just-Read/templates/index.html @@ -17,7 +17,7 @@ <ol class="archive"> {% endif %} {% elif loop.index < 7 %} - <li class="clearfix"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title}}"><time datetime="{{ article.date.isoformat() }}" pubdate>{{ article.locale_date }}</time> {{ article.title }}</a></li> + <li class="clearfix"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags}}"><time datetime="{{ article.date.isoformat() }}" pubdate>{{ article.locale_date }}</time> {{ article.title }}</a></li> {% endif %} {% endfor %} </ol> @@ -25,4 +25,4 @@ <p>More posts in the <a href="{{ SITEURL }}/archives.html">archive</a>.</p> </div> </div> -{% endblock content %}
\ No newline at end of file +{% endblock content %} |