diff options
author | Thomas Willingham <founder@kakste.com> | 2013-07-12 23:01:55 +0100 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-07-12 23:01:55 +0100 |
commit | f45efcab780cefaaa5a677684ac1fc444632a3de (patch) | |
tree | 7a5c45ca101b782f7f326b8655ac47e5fec3ceec /view/tpl | |
parent | c28f7e06222ac8ef1adf1e7813d1f2c5d0cd130a (diff) | |
download | volse-hubzilla-f45efcab780cefaaa5a677684ac1fc444632a3de.tar.gz volse-hubzilla-f45efcab780cefaaa5a677684ac1fc444632a3de.tar.bz2 volse-hubzilla-f45efcab780cefaaa5a677684ac1fc444632a3de.zip |
Small amount of work on webpages.
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/webpagelist.tpl | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/view/tpl/webpagelist.tpl b/view/tpl/webpagelist.tpl index c05e2ebee..5c00dee6b 100644 --- a/view/tpl/webpagelist.tpl +++ b/view/tpl/webpagelist.tpl @@ -1,12 +1,13 @@ {{if $pages}} -<div id="pagelist-content-wrapper"> -{{foreach $pages as $key => $items}} -<ul class="page-list"> -{{foreach $items as $item}} -<li><a href="editwebpage/{{$item.url}}">{{$editlink}}</a> {{$item.title}}</li> -{{/foreach}} -</ul> -<div class="clear"></div> -</div> -{{/foreach}} + + <div id="pagelist-content-wrapper"> + {{foreach $pages as $key => $items}} + {{foreach $items as $item}} + <div class="page-list-item"><a href="editwebpage/{{$item.url}}">{{$editlink}}</a> | <a href="page/{{$channel}}/{{$item.title}}">{{$view}}</a> {{$item.title}}</div> + {{/foreach}} + {{/foreach}} + </div> + + <div class="clear"></div> + {{/if}} |