aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/webpagelist.tpl
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2013-07-12 23:01:55 +0100
committerThomas Willingham <founder@kakste.com>2013-07-12 23:01:55 +0100
commitf45efcab780cefaaa5a677684ac1fc444632a3de (patch)
tree7a5c45ca101b782f7f326b8655ac47e5fec3ceec /view/tpl/webpagelist.tpl
parentc28f7e06222ac8ef1adf1e7813d1f2c5d0cd130a (diff)
downloadvolse-hubzilla-f45efcab780cefaaa5a677684ac1fc444632a3de.tar.gz
volse-hubzilla-f45efcab780cefaaa5a677684ac1fc444632a3de.tar.bz2
volse-hubzilla-f45efcab780cefaaa5a677684ac1fc444632a3de.zip
Small amount of work on webpages.
Diffstat (limited to 'view/tpl/webpagelist.tpl')
-rw-r--r--view/tpl/webpagelist.tpl21
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}}