1<?php
2/**
3 * DokuWiki Default Template
4 *
5 * This is the template you need to change for the overall look
6 * of DokuWiki.
7 *
8 * You should leave the doctype at the very top - It should
9 * always be the very first line of a document.
10 *
11 * @link   http://wiki.splitbrain.org/wiki:tpl:templates
12 * @author Andreas Gohr <andi@splitbrain.org>
13 */
14// must be run from within DokuWiki
15if (!defined('DOKU_INC')) die();
16
17include(DOKU_TPLINC.'tpl_functions.php');
18?>
19<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
20 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
21<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>"
22 lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>">
23<head>
24  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
25  <title><?php tpl_pagetitle()?>    <?php echo strip_tags($conf['title'])?></title>
26
27  <?php tpl_metaheaders()?>
28
29  <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />
30
31  <?php /*old includehook*/ @include(dirname(__FILE__).'/meta.html')?>
32</head>
33
34<body>
35<div class="dokuwiki">
36
37    <?php html_msgarea()?>
38<div id="tpl_simple_navi" align="right"><?php tpl_topbar() ?></div>
39    <div class="stylehead">
40    <b class="r1"></b><b class="r2"></b><b class="r3"></b><b class="r4"></b>
41      <div class="breadcrumbs"></div>
42      <?php if($conf['youarehere']){?>
43      <div class="breadcrumbs">
44        <?php tpl_youarehere() ?>
45      </div>
46      <?php }?>
47    </div>
48
49    <?php flush()?>
50
51
52      <div class="page">
53        <div class="bar" id="bar__top">
54        <div class="logo"><a href="/"><img src="<?php echo DOKU_TPL?>images/header.png" width="812" height="60" alt="TheTooth-Systems" border="0" /></a></div>
55        </div>
56        <!-- wikipage start -->
57		<?php tpl_content()?>
58        <!-- wikipage stop -->
59
60        <div class="clearer"></div>
61
62        <?php flush()?>
63
64        <div class="stylefoot">
65
66          <?php tpl_actionlink('top')?>
67
68          <div class="meta">
69            <div class="user">
70              <?php tpl_userinfo()?>
71            </div>
72            <div class="doc">
73              <?php tpl_pageinfo()?>
74            </div>
75          </div>
76
77          <div class="bar" id="bar__bottom">
78            <div class="bar-left" id="bar__bottomleft">
79              <?php tpl_actionlink('index')?>
80              <?php tpl_actionlink('recent')?>
81            </div>
82            <div class="bar-right" id="bar__bottomright">
83              <div class="bar-left" id="bar__topleft">
84                <?php tpl_actionlink('edit')?>
85              </div>
86              <?php tpl_actionlink('subscription')?>
87              <?php tpl_actionlink('history')?>
88              <?php tpl_actionlink('admin')?>
89              <?php tpl_actionlink('profile')?>
90              <?php tpl_actionlink('login')?>
91            </div>
92            <div class="clearer"></div>
93          </div>
94
95        </div>
96
97    </div>
98
99    <?php /*old includehook*/ @include(dirname(__FILE__).'/pagefooter.html')?>
100    <?php /*old includehook*/ @include(dirname(__FILE__).'/footer.html')?>
101
102    <b class="rbottom_inner">
103      <b class="r4"></b><b class="r3"></b><b class="r2"></b><b class="r1"></b>
104    </b>
105</div>
106
107<div class="no"><?php /* provide DokuWiki housekeeping, required in all templates */ tpl_indexerWebBug()?></div>
108</body>
109</html>
110