aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/home.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-29 15:17:32 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-29 15:17:32 +0200
commitd99751a8b3519e179298e75a63c3aca9d3fb2cfd (patch)
treeb2d9bdff1523f4ea16ab59c899a2c65f84dd126d /pyaggr3g470r/templates/home.html
parentImproved read/unread JS function. (diff)
downloadnewspipe-d99751a8b3519e179298e75a63c3aca9d3fb2cfd.tar.gz
newspipe-d99751a8b3519e179298e75a63c3aca9d3fb2cfd.tar.bz2
newspipe-d99751a8b3519e179298e75a63c3aca9d3fb2cfd.zip
Removed a bad character.
Diffstat (limited to 'pyaggr3g470r/templates/home.html')
-rw-r--r--pyaggr3g470r/templates/home.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index a8b0e7bc..40ed1168 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -93,7 +93,7 @@
</thead>
<tbody>
{% for article in articles %}
- <tr data-article="{{ article.id }}" data-feed="{{ article.feed_id }}">
+ <tr data-article="{{ article.id }}" data-feed="{{ article.feed_id }}">
<td><a href="/article/redirect/{{ article.id}}" target="_blank">{{ article.source.title|safe }}</a></td>
<td><a href="/article/{{ article.id }}">{{ article.title|safe }}</a></td>
<td class="date">{{ article.date|datetime }}</a></td>
bgstack15