diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2024-12-12 19:12:35 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2024-12-12 19:47:48 +0100 |
commit | 5f2a14189a67184d00fcf600b2302466edc44221 (patch) | |
tree | 8262b7f7ddb87da2b1f6c2db04b00bf173553d38 /templates/55/ad-hominem/conf | |
parent | Initial commit. (diff) | |
download | dokuwiki-templates-extra-5f2a14189a67184d00fcf600b2302466edc44221.tar.xz dokuwiki-templates-extra-5f2a14189a67184d00fcf600b2302466edc44221.zip |
Adding upstream version 20241201.upstream/20241201upstream
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'templates/55/ad-hominem/conf')
-rw-r--r-- | templates/55/ad-hominem/conf/default.php | 18 | ||||
-rw-r--r-- | templates/55/ad-hominem/conf/metadata.php | 30 |
2 files changed, 48 insertions, 0 deletions
diff --git a/templates/55/ad-hominem/conf/default.php b/templates/55/ad-hominem/conf/default.php new file mode 100644 index 0000000..ef416db --- /dev/null +++ b/templates/55/ad-hominem/conf/default.php @@ -0,0 +1,18 @@ +<?php +/** + * Configuration settings for the Ad Hominem template + * + * @author Sascha Leib <sascha@leib.be> + */ + +$conf['darkmode'] = 'allow'; +$conf['navtrail'] = 'none'; +$conf['printstyle'] = 'basic'; +$conf['homelink'] = ''; + +$conf['cookiepos'] = 'bottom'; +$conf['cookiemsg'] = 'This website uses cookies. By using the website, you agree with storing cookies on your computer. Also, you acknowledge that you have read and understand our Privacy Policy. If you do not agree, please leave the website.'; +$conf['cookielink'] = 'about:cookies'; + +$conf['langmenu'] = 'sb'; +$conf['langfilter'] = 'existing'; diff --git a/templates/55/ad-hominem/conf/metadata.php b/templates/55/ad-hominem/conf/metadata.php new file mode 100644 index 0000000..c22bc45 --- /dev/null +++ b/templates/55/ad-hominem/conf/metadata.php @@ -0,0 +1,30 @@ +<?php +/** + * Configuration settings for the Ad Hominem template + * + * @author Sascha Leib <sascha@leib.be> + */ + +$meta['darkmode'] = array('multichoice', + '_choices' => array ('allow', 'disable')); + +$meta['navtrail'] = array('multichoice', + '_choices' => array ('none', 'text', 'link')); + +$meta['printstyle'] = array('multichoice', + '_choices' => array ('basic', 'compact')); + +$meta['cookiepos'] = array('multichoice', + '_choices' => array ('hide', 'top', 'bottom')); + +$meta['cookiemsg'] = array('string'); + +$meta['cookielink'] = array('string'); + +$meta['homelink'] = array('string'); + +$meta['langmenu'] = array('multichoice', + '_choices' => array ('tb', 'sb')); + +$meta['langfilter'] = array('multichoice', + '_choices' => array ('all', 'existing')); |