From 620d4f5752a6c6f09dc1218d231530d9b95bc930 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 31 May 2013 02:25:42 +0100 Subject: Set a site channel so an admin can use CMS to create home.html and so on, without ever needing to touch HTML again. When I've finished that bit too. --- view/tpl/admin_site.tpl | 1 + 1 file changed, 1 insertion(+) (limited to 'view/tpl') diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index eaf067c27..a0167075d 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -51,6 +51,7 @@ {{include file="field_select.tpl" field=$theme}} {{include file="field_select.tpl" field=$theme_mobile}} {{include file="field_select.tpl" field=$theme_accessibility}} + {{include file="field_input.tpl" field=$site_channel}} {{include file="field_select.tpl" field=$ssl_policy}}
-- cgit v1.2.3 From 3f2829a062c9a6bedf7ebdc59db15e064b5a7446 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Wed, 10 Jul 2013 19:36:53 +0100 Subject: Minimum value webpages --- view/tpl/webpagelist.tpl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 view/tpl/webpagelist.tpl (limited to 'view/tpl') 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}} +
+{{foreach $pages as $key => $items}} +
    +{{foreach $items as $item}} +
  • Edit {{$item.title}}
  • +{{/foreach}} +
+
+
+{{/foreach}} +{{/if}} -- cgit v1.2.3