aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/webpagelist.tpl
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2013-07-10 19:36:53 +0100
committerThomas Willingham <founder@kakste.com>2013-07-10 19:36:53 +0100
commit3f2829a062c9a6bedf7ebdc59db15e064b5a7446 (patch)
treed3d78477bd89789c6992d33b407a025afba5b9a9 /view/tpl/webpagelist.tpl
parent085be3a16f704a3f89bbe4d795c9ca915cc26e8a (diff)
downloadvolse-hubzilla-3f2829a062c9a6bedf7ebdc59db15e064b5a7446.tar.gz
volse-hubzilla-3f2829a062c9a6bedf7ebdc59db15e064b5a7446.tar.bz2
volse-hubzilla-3f2829a062c9a6bedf7ebdc59db15e064b5a7446.zip
Minimum value webpages
Diffstat (limited to 'view/tpl/webpagelist.tpl')
-rw-r--r--view/tpl/webpagelist.tpl12
1 files changed, 12 insertions, 0 deletions
diff --git a/view/tpl/webpagelist.tpl b/view/tpl/webpagelist.tpl
new file mode 100644
index 000000000..8ae9a1da8
--- /dev/null
+++ b/view/tpl/webpagelist.tpl
@@ -0,0 +1,12 @@
+{{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}}">Edit</a> {{$item.title}}</li>
+{{/foreach}}
+</ul>
+<div class="clear"></div>
+</div>
+{{/foreach}}
+{{/if}}