aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-08-10 09:54:49 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-08-10 09:54:49 +0200
commit643874c47d6058b1b9a04d6cbdb37a5e8a9a0b7d (patch)
tree80d807ec5105cfd6c0f8991393d0176377c98ada /pyaggr3g470r
parentUpdated NEWS.rst for the new release. (diff)
downloadnewspipe-643874c47d6058b1b9a04d6cbdb37a5e8a9a0b7d.tar.gz
newspipe-643874c47d6058b1b9a04d6cbdb37a5e8a9a0b7d.tar.bz2
newspipe-643874c47d6058b1b9a04d6cbdb37a5e8a9a0b7d.zip
A new tab is opened when clicking on the title of an article.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/article.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/article.html b/pyaggr3g470r/templates/article.html
index 004dce01..101cf628 100644
--- a/pyaggr3g470r/templates/article.html
+++ b/pyaggr3g470r/templates/article.html
@@ -6,7 +6,7 @@
{% block content %}
<div class="container" data-article="{{ article.id }}">
<div class="jumbotron">
- <h2><a href="{{ article.link }}">{{ article.title|safe }}</a></h2>
+ <h2><a href="{{ article.link }}" target="_blank">{{ article.title|safe }}</a></h2>
<h3>{{ _('from') }} <a href="/feed/{{ article.source.id }}">{{ article.source.title }}</a></h3>
<a href="/delete/{{ article.id }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this article') }}"></i></a>
{% if article.like %}
bgstack15