aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/feed.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/templates/feed.html')
-rw-r--r--src/web/templates/feed.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/web/templates/feed.html b/src/web/templates/feed.html
index e3241ede..6b2e5e40 100644
--- a/src/web/templates/feed.html
+++ b/src/web/templates/feed.html
@@ -66,8 +66,9 @@
</div>
</div>
<div class="col-md-4">
+ <p><h3>{{ _('Most recurrent words') }}</h3></p>
{% if articles | count != 0 %}
- <div>{{ tag_cloud | safe }}</div>
+ <div class="well">{{ tag_cloud | safe }}</div>
{% endif %}
</div>
</div>
@@ -76,7 +77,8 @@
<script>
$(document).ready(function() {
$('#table-articles').DataTable( {
- responsive: true
+ responsive: true,
+ order: [[1, "desc"]]
});
});
</script>
bgstack15