aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/search.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/templates/search.html')
-rw-r--r--pyaggr3g470r/templates/search.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/search.html b/pyaggr3g470r/templates/search.html
index c89e2d90..8ae38811 100644
--- a/pyaggr3g470r/templates/search.html
+++ b/pyaggr3g470r/templates/search.html
@@ -8,7 +8,7 @@
{% for feed in feeds|sort(attribute="title") %}
<div class="row">
<div class="col-md-6 col-md-offset-3">
- <h1>{{ feed.title }}</h1>
+ <h1>{{ feed.title|safe }}</h1>
<a href="/articles/{{ feed.oid }}"><i class="glyphicon glyphicon-th-list" title="All articles"></i></a>
<a href="/feed/{{ feed.oid }}"><i class="glyphicon glyphicon-info-sign" title="Details"></i></a>
<a href="/edit_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
@@ -19,7 +19,7 @@
{% for n in range(number, number+3) %}
<div class="col-xs-6 col-sm-4 col-md-4">
{% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %}
- <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a>
+ <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title|safe }}</a>
{% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %}
<h6>{{ feed.articles[n].date }}</h6>
</div>
@@ -31,7 +31,7 @@
{% for n in range(feed.articles|length-(feed.articles|length % 3), feed.articles|length) %}
<div class="col-xs-6 col-sm-4 col-md-4">
{% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %}
- <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a>
+ <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title|safe }}</a>
{% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %}
<h6>{{ feed.articles[n].date }}</h6>
</div>
bgstack15