aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-02-26 23:59:15 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-02-26 23:59:15 +0100
commit2cdab7cd3f549f543d95e4473f06e89b533086f9 (patch)
tree3633279536ed6de325681905289b626de1925e2e
parentcleaning (diff)
downloadnewspipe-2cdab7cd3f549f543d95e4473f06e89b533086f9.tar.gz
newspipe-2cdab7cd3f549f543d95e4473f06e89b533086f9.tar.bz2
newspipe-2cdab7cd3f549f543d95e4473f06e89b533086f9.zip
Removed now useless link to the list of articles of a feed.
-rw-r--r--newspipe/web/templates/home.html2
1 files changed, 0 insertions, 2 deletions
diff --git a/newspipe/web/templates/home.html b/newspipe/web/templates/home.html
index cd02616a..1676abb2 100644
--- a/newspipe/web/templates/home.html
+++ b/newspipe/web/templates/home.html
@@ -30,7 +30,6 @@
</a></li>
<li class="feed-commands"><span>
<a href="/feed/{{ fid }}"><i class="glyphicon glyphicon-info-sign" title="{{ _('Details') }}"></i></a>
- <a href="/articles/{{ fid }}/100"><i class="glyphicon glyphicon-th-list" title="{{ _('Articles') }}"></i></a>
<a href="{{ url_for('feed.form', feed_id=fid) }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this feed') }}"></i></a>
<a href="{{ url_for('feed.delete', feed_id=fid) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this feed') }}" onclick="return confirm('{{ _('You are going to delete this feed.') }}');"></i></a>
<a href="{{ url_for('article.mark_as', new_value='read', feed_id=fid) }}"><i class="glyphicon glyphicon-check" title="{{ _('Mark this feed as read') }}"></i></a>
@@ -48,7 +47,6 @@
</a></li>
<li class="feed-commands"><span>
<a href="/feed/{{ fid }}"><i class="glyphicon glyphicon-info-sign" title="{{ _('Details') }}"></i></a>
- <a href="/articles/{{ fid }}/100"><i class="glyphicon glyphicon-th-list" title="{{ _('Articles') }}"></i></a>
<a href="{{ url_for('feed.form', feed_id=fid) }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this feed') }}"></i></a>
<a href="{{ url_for('feed.delete', feed_id=fid) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this feed') }}" onclick="return confirm('{{ _('You are going to delete this feed.') }}');"></i></a>
<a href="{{ url_for('article.mark_as', new_value='read', feed_id=fid) }}"><i class="glyphicon glyphicon-check" title="{{ _('Mark this feed as read') }}"></i></a>
bgstack15