1
0
Fork 0

Adding minimal version 20250330 (53db2f4).

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-04-13 13:24:55 +02:00
parent 9002d030ca
commit abaf5b98ff
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
40 changed files with 2999 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<?php
/*
* default configuration settings
*
*/
$conf['fullWidthSite'] = 1;
$conf['showToc'] = 1;
$conf['stickyToc'] = 0;
$conf['siteHeaderPosition'] = 'Top';
$conf['siteFooterPosition'] = 'Bottom';
$conf['showPageInfo'] = 1;
$conf['theme'] = 'Default';
$conf['hideTools'] = 0;

View file

@ -0,0 +1,14 @@
<?php
/*
* configuration metadata
*
*/
$meta['fullWidthSite'] = array('onoff');
$meta['showPageInfo'] = array('onoff');
$meta['siteHeaderPosition'] = array('multichoice','_choices' => array('Top','Above page'));
$meta['siteFooterPosition'] = array('multichoice','_choices' => array('Bottom','Below page'));
$meta['showToc'] = array('onoff');
$meta['stickyToc'] = array('onoff');
$meta['hideTools'] = array('onoff');
$meta['theme'] = array('multichoice','_choices' => array('Default','Dark','Terminal'));