commit d5724508774a82240be1402a5d3f085e75d5fbcd
parent 01b9b154dcd96a702c6e7b66348c05618cbb6457
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 4 Dec 2020 14:58:23 +0100
use full width for news on main page
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/template/index.html.j2 b/template/index.html.j2
@@ -51,11 +51,11 @@
<div class="row mt-5">
</div>
<div class="row">
- <div class="col-8">
+ <div class="col-12">
<h2><a href="{{ url_localized('news/index.html')}}">{{ _("News") }}</a></h2>
</div>
{% for item in newsdata[:3] %}
- <div class="col-8">
+ <div class="col-12">
<a href="news/{{ item['page'] }}" title="{{ item['date']}}">{{ item['date'] }}: {{ item['title'] }}</a>
</div>
{% endfor %}