diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-04-22 10:31:36 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-04-22 10:31:36 +0200 |
commit | b4dff3a9ff16811ea0310f5dbf4d7559c97835b0 (patch) | |
tree | 420f90afab7724b60128e2e8df5233b17e3a4a05 /view/tpl/layoutlist.tpl | |
parent | e807231e9192ff43ff2ee4ec96260dbb44a25cd2 (diff) | |
download | volse-hubzilla-b4dff3a9ff16811ea0310f5dbf4d7559c97835b0.tar.gz volse-hubzilla-b4dff3a9ff16811ea0310f5dbf4d7559c97835b0.tar.bz2 volse-hubzilla-b4dff3a9ff16811ea0310f5dbf4d7559c97835b0.zip |
provide headings for blocks and layouts
Diffstat (limited to 'view/tpl/layoutlist.tpl')
-rw-r--r-- | view/tpl/layoutlist.tpl | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/view/tpl/layoutlist.tpl b/view/tpl/layoutlist.tpl index 0a0085497..cd146377d 100644 --- a/view/tpl/layoutlist.tpl +++ b/view/tpl/layoutlist.tpl @@ -1,5 +1,20 @@ -{{if $pages}} +<div class="section-title-wrapper"> + {{if $editor}} + <div class="pull-right"> + <button id="webpage-create-btn" class="btn btn-xs btn-success" onclick="openClose('layout-editor');"><i class="icon-edit"></i> {{$create}}</button> + <a href="{{$help.url}}" target="_blank" class="btn btn-xs btn-warning" title="{{$help.title}}"><i class="icon-info"></i> {{$help.text}}</a> + </div> + {{/if}} + <h2>{{$title}}</h2> + <div class="clear"></div> +</div> +{{if $editor}} +<div id="layout-editor" class="section-content-tools-wrapper"> + {{$editor}} +</div> +{{/if}} +{{if $pages}} <div id="pagelist-content-wrapper" class="generic-content-wrapper"> {{foreach $pages as $key => $items}} {{foreach $items as $item}} @@ -15,5 +30,4 @@ </div> <div class="clear"></div> - {{/if}} |