diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-06-23 13:06:22 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-06-23 13:06:22 +0200 |
commit | b6c4601d8fe96d53428697dd98d085f3602b2e6e (patch) | |
tree | 3f821bca2855e03c8c09b58c3e1901b83fa97b1b /view/tpl/directory_header.tpl | |
parent | a4775aab9b823523dd91246cbbb7fec3375b214d (diff) | |
download | volse-hubzilla-b6c4601d8fe96d53428697dd98d085f3602b2e6e.tar.gz volse-hubzilla-b6c4601d8fe96d53428697dd98d085f3602b2e6e.tar.bz2 volse-hubzilla-b6c4601d8fe96d53428697dd98d085f3602b2e6e.zip |
some work on directory
Diffstat (limited to 'view/tpl/directory_header.tpl')
-rwxr-xr-x | view/tpl/directory_header.tpl | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/view/tpl/directory_header.tpl b/view/tpl/directory_header.tpl index 477df8a63..26739efc3 100755 --- a/view/tpl/directory_header.tpl +++ b/view/tpl/directory_header.tpl @@ -1,16 +1,12 @@ -<div class="generic-content-wrapper-styled"> -<h1>{{$dirlbl}}</h1> - -{{if $search}} -<h4>{{$finddsc}} {{$safetxt}}</h4> -{{/if}} - -{{foreach $entries as $entry}} -{{include file="direntry.tpl"}} -{{/foreach}} - -<div id="page-end"></div> -<div class="directory-end"></div> +<div class="generic-content-wrapper"> + <div class="section-title-wrapper"> + <h2>{{$dirlbl}}{{if $search}}: {{$safetxt}}{{/if}}</h2> + </div> + {{foreach $entries as $entry}} + {{include file="direntry.tpl"}} + {{/foreach}} + <div id="page-end"></div> + <div class="clear"></div> </div> <script>$(document).ready(function() { loadingPage = false;});</script> <div id="page-spinner"></div> |