Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | 31-Mar-2025 | - | ||||
images/ | H | 08-Sep-2019 | - | |||
conf.php | H A D | 06-Jan-2007 | 705 | 19 | 5 | |
design.css | H A D | 06-Jan-2007 | 15 KiB | 784 | 663 | |
detail.php | H A D | 06-Jan-2007 | 3 KiB | 93 | 59 | |
footer.html | H A D | 06-Jan-2007 | 3 KiB | 66 | 48 | |
layout.css | H A D | 06-Jan-2007 | 1.4 KiB | 80 | 66 | |
main.php | H A D | 06-Jan-2007 | 4.2 KiB | 161 | 111 | |
media.css | H A D | 06-Jan-2007 | 3.3 KiB | 205 | 168 | |
mediamanager.php | H A D | 06-Jan-2007 | 1.3 KiB | 45 | 29 | |
print.css | H A D | 06-Jan-2007 | 3.7 KiB | 235 | 191 | |
readme.txt | H A D | 06-Jan-2007 | 1.3 KiB | 44 | 34 | |
rtl.css | H A D | 06-Jan-2007 | 1.8 KiB | 112 | 89 | |
sidebar-theme.css | H A D | 06-Jan-2007 | 1.2 KiB | 69 | 51 | |
style.ini | H A D | 06-Jan-2007 | 2 KiB | 66 | 54 | |
tpl_functions.php | H A D | 06-Jan-2007 | 1.8 KiB | 74 | 42 |
readme.txt
1default-sidebar theme of dokuwiki 2 3author: Xan <DXpublica@telefonica.net> 4date: 2006-04-05 5modified: 2007-01-06 6license: GPL v2 7 8INSTALLATION 9=================================== 10 111) decompress default-sidebar.tar.gz in lib/tpl/sidebar-theme 122) modify sidebar-theme/conf.php for sidebars 133) put $conf['template'] = 'sidebar-theme'; in your conf file (or use configuration manager in admin mode) 14 15USAGE 16=================================== 17By default no sidebar is created. 18You could create a sidebar for specific page or default sidebar (for all pages) 19 20- For create left sidebar of "wikiexample" page, you have to create the page "wikiexample_sidebar_left" (the "sidebar" string could be changed in conf.php). Idem right sidebar 21- For create default left sidebar, simply create "default_sidebar_left" (it could be changed in conf.php) (idem right sidebar) 22- The specific page sidebar has high priority than default sidebar. 23 24OPTIONAL 25======================================= 26 27- All design is in sidebar-theme.css file 28- By default left and sidebar ocupied 20% of the page and main wiki page 60% 29- For change it, modify in sidebar-theme.css: 30 31left_tr_estructura, #right_tr_estructura 32{ 33 width: 20% !important; 34 max-width: 20% !important; 35 min-width: 20% !important; 36} 37 38#center_tr_estructura 39{ 40 width: 60% !important; 41 max-width: 60% !important; 42 min-width: 60% !important; 43} 44