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://dokuwiki.org/templates
12 * @author Andreas Gohr <andi@splitbrain.org>
13 */
14
15// must be run from within DokuWiki
16if (!defined('DOKU_INC')) die();
17
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>
26    [<?php echo strip_tags($conf['title'])?>]
27    <?php tpl_pagetitle()?>
28  </title>
29
30  <?php tpl_metaheaders()?>
31
32<meta name="Content-Language" content="<?php echo $conf['lang']?>" />
33<meta name="Language" content="<?php echo $conf['lang']?>" />
34
35  <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />
36
37  <?php /*old includehook*/ @include(dirname(__FILE__).'/meta.html')?>
38
39  <?php if (file_exists(DOKU_PLUGIN.'displaywikipage/code.php'))
40  include_once(DOKU_PLUGIN.'displaywikipage/code.php')?>
41</head>
42
43<body>
44<?php /*old includehook*/ @include(dirname(__FILE__).'/topheader.html')?>
45
46
47<div class="dokuwiki">
48  <?php html_msgarea()?>
49
50  <div class="stylehead">
51
52    <div class="header">
53      <div class="logoshadow">
54        <div class="logo">
55          <?php tpl_link(wl(),$conf['title'],'name="dokuwiki__top" id="dokuwiki__top" accesskey="h" title="[H]"')?>
56        </div>
57      </div>
58      <div class="clearer">&nbsp;</div>
59    </div>
60
61    <?php /*old includehook*/ @include(dirname(__FILE__).'/header.html')?>
62
63  </div>
64
65  <?php flush()?>
66
67  <?php if (function_exists('dwp_display_wiki_page')){
68    print('<div class="menue">');
69    $result = '';
70    dwp_display_wiki_page(":menue");
71    print('  </div>');
72  }?>
73  <!--div class="clearer">&nbsp;</div-->
74  <?php flush()?>
75
76  <?php /*old includehook*/ @include(dirname(__FILE__).'/pageheader.html')?>
77<div class="clearer">&nbsp;</div>
78  <div class="content_margin">
79    <div class="shadow">
80      <div class="page">
81
82      <!--
83        <div class="navigation-bar">
84          <?php if($conf['breadcrumbs']){?>
85          <div class="breadcrumbs">
86            <?php tpl_breadcrumbs()?>
87            <?php //tpl_youarehere() //(some people prefer this)?>
88          </div>
89          <?php }?>
90
91          <?php if($conf['youarehere']){?>
92          <div class="breadcrumbs">
93            <?php tpl_youarehere() ?>
94          </div>
95            <?php }?>
96        </div>
97
98          -->
99
100            <?php if (function_exists('dwp_display_wiki_page')){
101          print('<div class="headmenue">');
102          $result = '';
103          dwp_display_wiki_page(":headmenue");
104          print('  </div>');
105          }?>
106          <!--div class="clearer">&nbsp;</div-->
107          <?php flush()?>
108
109        <?php tpl_content()?>
110        <div class="commonpages">
111          <a href="<?php echo DOKU_BASE; ?>doku.php/impressum" title="Impressum">Impressum</a>
112          <a href="<?php echo DOKU_BASE; ?>doku.php/kontakt" title="Kontakt">Kontakt</a>
113          <a href="<?php echo DOKU_BASE; ?>doku.php/sitemap" title="Sitemap">Sitemap</a>
114        </div>
115        <div class="rssfeed">
116          <a <?php echo $tgt?> href="<?php echo DOKU_BASE; ?>feed.php" title="Recent changes RSS feed"><img src="<?php echo DOKU_TPL; ?>images/button-rss.png" width="80" height="15" alt="Recent changes RSS feed" /></a>
117          <a <?php echo $tgt?> href="http://dokuwiki.org/" title="Driven by DokuWiki"><img src="<?php echo DOKU_TPL; ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a>
118        </div>
119		<div class="seitzeichen">
120			<script type="text/javascript">var szu=encodeURIComponent(location.href); var szt=encodeURIComponent(document.title).replace(/\'/g,'`'); var szjsh=(window.location.protocol == 'https:'?'https://ssl.seitzeichen.de/':'http://w3.seitzeichen.de/'); document.write(unescape("%3Cscript src='" + szjsh + "w/3b/7a/widget_3b7a6383defbbec79fb4f91e6b7a7c74.js' type='text/javascript'%3E%3C/script%3E"));</script>
121		</div>
122  		<div class="clearer">&nbsp;</div>
123      </div>
124    </div>
125  </div>
126
127  <div class="clearer">&nbsp;</div>
128        <!--<div class="meta">
129          <div class="user">
130			<?php tpl_userinfo()?>
131          </div>
132          <div class="doc">
133            <?php tpl_pageinfo()?>
134          </div>
135        </div>-->
136  <?php flush()?>
137
138  <?php if (function_exists('dwp_display_wiki_page')){
139    print('<div class="news">');
140    dwp_display_wiki_page(":news");
141    print('  </div>');
142  }?>
143  <div class="clearer">&nbsp;</div>
144  <?php flush()?>
145
146  <div class="stylefoot">
147
148   <?php /*old includehook*/ @include(dirname(__FILE__).'/pagefooter.html')?>
149
150    <div class="bar" id="bar__bottom">
151      <div class="bar-left" id="bar__bottomleft">
152      <?php tpl_button('login')?>
153      </div>
154      <div class="bar-right" id="bar__bottomright">
155      <?php tpl_button('edit')?>
156      <?php tpl_button('history')?>
157      <?php tpl_button('subscribe')?>
158      <?php tpl_button('subscribens')?>
159      <?php tpl_button('admin')?>
160      <?php tpl_button('profile')?>
161      <?php tpl_button('index')?>
162      <!--?php tpl_button('top')?-->
163      <?php tpl_searchform()?>&nbsp;
164      </div>
165
166      <div class="clearer"></div>
167    </div>
168  </div>
169</div>
170<?php /*old includehook*/ @include(dirname(__FILE__).'/footer.html')?>
171
172<div class="no"><?php /* provide DokuWiki housekeeping, required in all templates */ tpl_indexerWebBug()?></div>
173</body>
174</html>
175