aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-13 14:15:40 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-13 14:15:40 +0200
commite2a28dc6177ecce99b650e10a27037286bcd2eab (patch)
tree00846a8cf6bb96f78c4a145f26bcc1e5c2b697c3 /pyaggr3g470r/templates
parentWe should filter articles only for one user. (diff)
downloadnewspipe-e2a28dc6177ecce99b650e10a27037286bcd2eab.tar.gz
newspipe-e2a28dc6177ecce99b650e10a27037286bcd2eab.tar.bz2
newspipe-e2a28dc6177ecce99b650e10a27037286bcd2eab.zip
Clicking on the article link from the 'Feed' column opens a new tab.
Diffstat (limited to 'pyaggr3g470r/templates')
-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 8aa90267..cef8365c 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -88,7 +88,7 @@
<tbody>
{% for article in articles %}
<tr data-article="{{ article.id }}" data-feed="{{ article.feed_id }}">
- <td><a href="/article/redirect/{{ article.id}}">{{ article.source.title|safe }}</a></td>
+ <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>
<td>
bgstack15