1 <?php
2 /**
3  * Template header, included in the main and detail files
4  */
5 
6 // must be run from within DokuWiki
7 if (!defined('DOKU_INC')) die();
8 ?>
9 
10 <!-- ********** HEADER ********** -->
11 <div id="dokuwiki__header"><div class="pad group">
12 
13     <?php tpl_includeFile('header.html') ?>
14 
15     <div class="headings group">
16         <ul class="a11y skip">
17             <li><a href="#dokuwiki__content"><?php echo $lang['skip_to_content']; ?></a></li>
18         </ul>
19 
20         <h1><?php
21             tpl_link(
22                 wl(),
23                 '<span>'.$conf['title'].'</span>',
24                 'accesskey="h" title="[H]"'
25             );
26         ?></h1>
27         <?php if ($conf['tagline']): ?>
28             <p class="claim"><?php echo $conf['tagline']; ?></p>
29         <?php endif ?>
30     </div>
31     <hr class="a11y" />
32 </div></div><!-- /header -->
33