diff options
author | MaZderMind | 2015-12-09 21:41:06 +0100 |
---|---|---|
committer | MaZderMind | 2015-12-09 21:41:06 +0100 |
commit | 13bcfcd6f0b7c13bdbd60d928099b0d42d4ca6c6 (patch) | |
tree | 0e95fb2951c0b284318d16cf3a4b475fd7426729 /template/overview.phtml | |
parent | f6e779c88d72888c52a69f2e38824bef603f3e4c (diff) |
Fix Headline-Wrapping in Overview by moving the Headline out of the Row
Diffstat (limited to 'template/overview.phtml')
-rw-r--r-- | template/overview.phtml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/template/overview.phtml b/template/overview.phtml index 19b83ff..45e2189 100644 --- a/template/overview.phtml +++ b/template/overview.phtml @@ -8,12 +8,14 @@ </div> <? $i = 0; foreach($overview->getGroups() as $group => $rooms): ?> - <div class="row room-group room-group-n<?=h($i++)?>"> - <? if($group): ?> + <? if($group): ?> + <div class="row"> <div class="col-xs-12"> <h2><?=h($group)?></h2> </div> - <? endif ?> + </div> + <? endif ?> + <div class="row room-group room-group-n<?=h($i++)?>"> <? $count = count($rooms); ?> <? foreach($rooms as $idx => $room): ?> |