aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/home.html17
1 files changed, 10 insertions, 7 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index 81aeea9c..95b7ef54 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -119,13 +119,16 @@
</div>
{% else %}
<br />
- {% if filter_ == 'all' %}
- <div class="alert alert-warning"><strong>{{ _('Oh!') }}</strong> {{ _('This feed is empty.') }}</div>
- {% elif filter_ == 'read' %}
- <div class="alert alert-info"><strong>{{ _('Work for you!') }}</strong> {{ _('All articles are unread.') }}</div>
- {% elif filter_ == 'unread' %}
- <div class="alert alert-success"><strong>{{ _('Well done!') }}</strong> {{ _('You read all articles.') }}</div>
- {% endif %}
+ <div class="alert alert-warning alert-dismissable">
+ <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
+ {% if filter_ == 'all' %}
+ <strong>{{ _('Oh!') }}</strong> {{ _('This feed is empty.') }}
+ {% elif filter_ == 'read' %}
+ <strong>{{ _('Work for you!') }}</strong> {{ _('All articles are unread.') }}
+ {% elif filter_ == 'unread' %}
+ <strong>{{ _('Well done!') }}</strong> {{ _('You read all articles.') }}
+ {% endif %}
+ </div>
{% endif %}
</div><!-- /.container -->
{% endif %}
bgstack15