diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-04-04 00:50:08 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-04-04 00:50:08 +0200 |
commit | a4c40ad567abe66c52d119d3023482a02b71b1bb (patch) | |
tree | 8464a503d2864b3056a2a64bc7af4ebc6b795514 /pyaggr3g470r/templates/feed.html | |
parent | Misc improvements to the CSS. (diff) | |
download | newspipe-a4c40ad567abe66c52d119d3023482a02b71b1bb.tar.gz newspipe-a4c40ad567abe66c52d119d3023482a02b71b1bb.tar.bz2 newspipe-a4c40ad567abe66c52d119d3023482a02b71b1bb.zip |
'Jumbotron' replaced by 'well' bootstrap component in all templates.
Diffstat (limited to 'pyaggr3g470r/templates/feed.html')
-rw-r--r-- | pyaggr3g470r/templates/feed.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/feed.html b/pyaggr3g470r/templates/feed.html index c7dfecc2..268cbf7d 100644 --- a/pyaggr3g470r/templates/feed.html +++ b/pyaggr3g470r/templates/feed.html @@ -1,13 +1,13 @@ {% extends "layout.html" %} {% block content %} <div class="container"> - <div class="jumbotron"> + <div class="well"> <h2>{{ feed.title }}</h2> {% if feed.description %} <p>{{ feed.description }}</p> {% endif %} <a href="/delete_feed/{{ feed.id }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this feed') }}" onclick="return confirm('{{ _('You are going to delete this feed.') }}');"></i></a> <a href="/edit_feed/{{ feed.id }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this feed') }}"></i></a> </div> - <div class="jumbotron"> + <div class="well"> <p> {{ _('This feed contains') }} {{ feed.articles.all()|count }} <a href="/articles/{{ feed.id }}/100">{{ _('articles') }}</a>.<br /> {{ _('Address of the feed') }}: <a href="{{ feed.link }}" target="_blank">{{ feed.link }}</a><br /> @@ -37,7 +37,7 @@ {% endif %} </p> </div> - <div class="jumbotron"> + <div class="well"> {% if feed.articles.all()|count != 0 %} <div>{{ tag_cloud|safe }}</div> {% endif %} |