diff options
author | friendica <info@friendica.com> | 2013-07-10 16:39:32 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-10 16:39:32 -0700 |
commit | df23bc9ad4511c1faab2efcf9a3558d81a8c2058 (patch) | |
tree | 33f4bb457a14c94ab8d48ec144538918f2b47c96 /view/tpl/webpagelist.tpl | |
parent | 72d737cc82f5987791c9ceba0c8b99a505886274 (diff) | |
parent | 40a444f01b2d3e7cc9b9c8822a2e36c47e6a25f6 (diff) | |
download | volse-hubzilla-df23bc9ad4511c1faab2efcf9a3558d81a8c2058.tar.gz volse-hubzilla-df23bc9ad4511c1faab2efcf9a3558d81a8c2058.tar.bz2 volse-hubzilla-df23bc9ad4511c1faab2efcf9a3558d81a8c2058.zip |
Merge pull request #73 from beardy-unixer/master
Webpages
Diffstat (limited to 'view/tpl/webpagelist.tpl')
-rw-r--r-- | view/tpl/webpagelist.tpl | 12 |
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}} |