diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-08-26 19:51:39 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-08-26 19:51:39 +0200 |
commit | 002c20391391bf6086d8a4fb7726c7d33058f7cb (patch) | |
tree | a8524b211f892ae4c78ae68fcf80e40fe4cb8201 | |
parent | 8a2b96c2f950f828635441f357acfad94cea1266 (diff) | |
download | volse-hubzilla-002c20391391bf6086d8a4fb7726c7d33058f7cb.tar.gz volse-hubzilla-002c20391391bf6086d8a4fb7726c7d33058f7cb.tar.bz2 volse-hubzilla-002c20391391bf6086d8a4fb7726c7d33058f7cb.zip |
contact-block needs a class clear div at the end to not mess with following widgets and whitespace
-rwxr-xr-x | view/tpl/contact_block.tpl | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/view/tpl/contact_block.tpl b/view/tpl/contact_block.tpl index 6a29abaef..580a8a41c 100755 --- a/view/tpl/contact_block.tpl +++ b/view/tpl/contact_block.tpl @@ -1,13 +1,14 @@ <div id="contact-block" class="widget"> -<h3>{{$contacts}}</h3> -{{if $micropro}} - {{if $viewconnections}} - <a class="allcontact-link" href="viewconnections/{{$nickname}}">{{$viewconnections}}</a> - {{/if}} - <div class='contact-block-content'> - {{foreach $micropro as $m}} - {{$m}} - {{/foreach}} - </div> -{{/if}} + <h3>{{$contacts}}</h3> + {{if $micropro}} + {{if $viewconnections}} + <a class="allcontact-link" href="viewconnections/{{$nickname}}">{{$viewconnections}}</a> + {{/if}} + <div class='contact-block-content'> + {{foreach $micropro as $m}} + {{$m}} + {{/foreach}} + </div> + {{/if}} </div> +<div class="clear"></div> |