1
0
Fork 0

Adding ad-hominem version 2024-10-07 (3a49926).

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-03-16 08:34:47 +01:00
parent 04082b5e58
commit 9432cbd70d
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
105 changed files with 8812 additions and 0 deletions

View file

@ -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';

View file

@ -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'));