reduce size of section-headers (h1 -> h2)

This commit is contained in:
Thor77 2016-07-04 21:17:34 +02:00
parent 402040e2dc
commit 67c08330d8
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
{% for headline, list in objs %}
{% if list|length > 0 %}
{% set headline_id = headline|lower|replace(' ', '_') %}
<h1>{{ headline }}</h1>
<h2>{{ headline }}</h2>
<ul class="list-group" id="{{ headline_id }}">
{% for client, value in list %}
{% set id = headline_id + "." + client.nick %}