diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2016-06-06 17:40:38 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-06-27 10:26:22 +0200 |
commit | 20d250a674b1d89cafb324cd7157b77bedc2e5fd (patch) | |
tree | 77f7e1a24eeee323d213e7f47aeb4f77f170f788 /apps/theming/templates | |
parent | db6361ef0314868edc9d58a81c0806c8c758af0a (diff) | |
download | nextcloud-server-20d250a674b1d89cafb324cd7157b77bedc2e5fd.tar.gz nextcloud-server-20d250a674b1d89cafb324cd7157b77bedc2e5fd.zip |
initial commit for the theming app
Diffstat (limited to 'apps/theming/templates')
-rw-r--r-- | apps/theming/templates/settings-admin.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/theming/templates/settings-admin.php b/apps/theming/templates/settings-admin.php new file mode 100644 index 00000000000..4177f59d071 --- /dev/null +++ b/apps/theming/templates/settings-admin.php @@ -0,0 +1,11 @@ +<?php +/** @var array $_ */ +/** @var OC_L10N $l */ +script('theming', 'settings-admin'); +style('theming', 'settings-admin') +?> +<div id="ncTheming" class="section"> + <h2><?php p($l->t('Theming')); ?></h2> + Hello World +</div> + |