diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-05-21 15:07:27 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-05-21 15:07:27 -0400 |
commit | 5f2baa59f5491f3be964b60fce4bec2ccd840ac1 (patch) | |
tree | 1e0c071b5da4c0d8502d06234ee736a2beb9d37a /view/tpl | |
parent | c6aa42773a17d53b4572488967b99666ab97ef97 (diff) | |
download | volse-hubzilla-5f2baa59f5491f3be964b60fce4bec2ccd840ac1.tar.gz volse-hubzilla-5f2baa59f5491f3be964b60fce4bec2ccd840ac1.tar.bz2 volse-hubzilla-5f2baa59f5491f3be964b60fce4bec2ccd840ac1.zip |
Forgot some templates
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/wiki_page_list.tpl | 9 | ||||
-rw-r--r-- | view/tpl/wikilist.tpl | 12 |
2 files changed, 21 insertions, 0 deletions
diff --git a/view/tpl/wiki_page_list.tpl b/view/tpl/wiki_page_list.tpl new file mode 100644 index 000000000..015ffb930 --- /dev/null +++ b/view/tpl/wiki_page_list.tpl @@ -0,0 +1,9 @@ +<div id="wiki_page_list" class="widget"> + <h3>{{$header}}</h3> + <ul class="nav nav-pills nav-stacked"> + {{foreach $pages as $page}} + <li><a href="">{{$page}}</a></li> + {{/foreach}} + </ul> +</div> + diff --git a/view/tpl/wikilist.tpl b/view/tpl/wikilist.tpl new file mode 100644 index 000000000..b76bb359c --- /dev/null +++ b/view/tpl/wikilist.tpl @@ -0,0 +1,12 @@ +<div id="wiki_list" class="widget"> + <h3>{{$header}}</h3> + <ul class="nav nav-pills nav-stacked"> + {{foreach $read as $r}} + <li><a href="">{{$r}}</a></li> + {{/foreach}} + {{foreach $write as $r}} + <li><a href="">{{$r}}</a></li> + {{/foreach}} + </ul> +</div> + |