• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..05-Apr-2024-

images/H08-Sep-2019-

conf.phpH A D06-Jan-2007705 195

design.cssH A D06-Jan-200715 KiB784663

detail.phpH A D06-Jan-20073 KiB9359

footer.htmlH A D06-Jan-20073 KiB6648

layout.cssH A D06-Jan-20071.4 KiB8066

main.phpH A D06-Jan-20074.2 KiB161111

media.cssH A D06-Jan-20073.3 KiB205168

mediamanager.phpH A D06-Jan-20071.3 KiB4529

print.cssH A D06-Jan-20073.7 KiB235191

readme.txtH A D06-Jan-20071.3 KiB4434

rtl.cssH A D06-Jan-20071.8 KiB11289

sidebar-theme.cssH A D06-Jan-20071.2 KiB6951

style.iniH A D06-Jan-20072 KiB6654

tpl_functions.phpH A D06-Jan-20071.8 KiB7442

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