1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<?php
4/**
5 * DokuWiki Default Template
6 *
7 * This is the template you need to change for the overall look
8 * of DokuWiki.
9 *
10 * You should leave the doctype at the very top - It should
11 * always be the very first line of a document.
12 *
13 * @link   http://wiki.splitbrain.org/wiki:tpl:templates
14 * @author Andreas Gohr <andi@splitbrain.org>
15 * modified by Xan <DXpublica@telefonica.net> (gen 2006)
16 */
17 require_once(dirname(__FILE__).'/tpl_functions.php');
18?>
19<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>"
20 lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>">
21<head>
22  <title><?php tpl_pagetitle()?> [<?php echo hsc($conf['title'])?>]</title>
23  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
24
25  <?php tpl_metaheaders()?>
26
27  <link rel="shortcut icon" href="<?php echo DOKU_BASE?>lib/images/favicon.ico" />
28  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>layout.css" />
29  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>design.css" />
30  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>sidebar.css" />
31
32  <?php if($lang['direction'] == 'rtl') {?>
33  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>rtl.css" />
34  <?php } ?>
35
36  <link rel="stylesheet" media="print" type="text/css" href="<?php echo DOKU_TPL?>print.css" />
37
38  <!--[if gte IE 5]>
39  <style type="text/css">
40    /* that IE 5+ conditional comment makes this only visible in IE 5+ */
41    /* IE bugfix for transparent PNGs */
42    //DISABLED   img { behavior: url("<?php echo DOKU_BASE?>lib/scripts/pngbehavior.htc"); }
43  </style>
44  <![endif]-->
45
46  <?php /*old includehook*/ @include(dirname(__FILE__).'/meta.html')?>
47</head>
48
49<body>
50<?php /*old includehook*/ @include(dirname(__FILE__).'/topheader.html')?>
51<div class="dokuwiki">
52  <?php html_msgarea()?>
53
54  <div class="stylehead">
55
56    <div class="header">
57        <div class="header-title">
58           <div class="logo"><?php tpl_link(wl(),$conf['title'],'name="top" accesskey="h" title="[ALT+H]"')?></div>
59           <div class="pagename">[[<?php tpl_link(wl($ID,'do=backlink'),$ID)?>]]</div>
60        </div>
61    </div>
62
63    <?php /*old includehook*/ @include(dirname(__FILE__).'/header.html')?>
64
65    <?php if($conf['breadcrumbs']){?>
66    <div class="breadcrumbs">
67      <div class="breadcrumbs_in">
68        <?php // tpl_breadcrumbs()?>
69        <?php tpl_youarehere() //(some people prefer this)?>
70      </div>
71    </div>
72    <?php }?>
73
74    <div class="bar" id="bar_top">
75      <div class="bar_container">
76        <div class="bar-left" id="bar_topleft">
77          <?php tpl_actionlink('edit','',' ·') ?>
78          <?php tpl_actionlink('history')?>
79        </div>
80        <div class="bar-right" id="bar_topright">
81          <?php tpl_actionlink('recent')?>
82        </div>&nbsp;
83      </div>
84    </div>
85
86    <div class="bar" id="bar_top_second">
87      <div class="bar_container">
88        <div class="bar-left" id="bar_topleft">
89          <?php tpl_actionlink('index','',' ·')?>
90          <?php tpl_searchform()?>
91        </div>
92        <div class="bar-right" id="bar_topright">
93          <?php tpl_actionlink('admin')?>
94          <?php tpl_actionlink('login')?>
95        </div>&nbsp;
96      </div>
97    </div>
98  </div>
99  <?php flush()?>
100
101  <?php /*old includehook*/ @include(dirname(__FILE__).'/pageheader.html')?>
102
103  <table id="table-estructura">
104  <tr valign="top">
105  <td id="left_tr_estructura">
106          <?php tpl_sidebar('left') ?>
107  </td>
108  <?php flush()?>
109  <td id="center_tr_estructura">
110  <div class="page">
111          <!-- wikipage start -->
112          <?php tpl_content()?>
113          <!-- wikipage stop -->
114  </div>
115  </td>
116  <?php flush()?>
117  <td id="right_tr_estructura">
118          <?php tpl_sidebar('right') ?>
119  </td>
120  </tr>
121  </table>
122
123  <div class="clearer">&nbsp;</div>
124  <br>
125  <br>
126  <?php flush()?>
127
128  <div class="stylefoot">
129
130   <div class="bar" id="bar_bottom">
131    <div class="bar_container" id="bar_container_bottom">
132     <div class="meta">
133      <div class="user">
134        <?php tpl_userinfo()?>
135      </div>
136      <div class="doc">
137        <?php tpl_pageinfo()?>
138      </div>
139     </div>
140    </div>
141   </div>
142
143   <?php /*old includehook*/ @include(dirname(__FILE__).'/pagefooter.html')?>
144
145
146  </div>
147
148</div>
149<?php /*old includehook*/ @include(dirname(__FILE__).'/footer.html')?>
150
151<?php tpl_indexerWebBug()?>
152</body>
153</html>
154