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 <?php include('custom/custom_functions.php') ?> 26 <title> 27 <?php tpl_pagetitle()?> 28 [<?php echo strip_tags($conf['title'])?>] 29 </title> 30 31 <style type="text/css"> 32 33 </style> 34 35 <link rel="stylesheet" type="text/css" href="<?php echo DOKU_TPL?>mlf.css" /> 36 37 <?php tpl_metaheaders()?> 38 39 <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" /> 40 41 <?php /*old includehook*/ @include(dirname(__FILE__).'/meta.html')?> 42</head> 43<body> 44<div class="header"> 45<div class="title"><?php echo "<a class='header' href='doku.php' name='doku__top' accesskey='H'>", $conf['title'] ,"</a>" ?></div> 46<div class="float"><div class="login"><?php tpl_button('login')?><?php tpl_button('profile')?><?php tpl_button('admin')?></div><div class="search"><?php tpl_searchform()?></div></div> 47</div> 48<div class="nav"><?php $fns = strpos($ID, ":"); if ($fns === false) { $FID = $ID; } else { $FID = substr($ID, 0, $fns); };dyn_links($FID) ?></div> 49<div class="doku-control"><?php tpl_button('edit')?><?php tpl_button('history')?><?php tpl_button('revert')?><?php tpl_button('subscribe')?><?php tpl_button('top')?><div style="float: right; margin-right: 10px"><?php tpl_breadcrumbs()?></div></div> 50<div class="content"><div class="dokuwiki"><?php tpl_content()?></div></div> 51<div class="doku-control"><?php tpl_button('edit')?><?php tpl_button('history')?><?php tpl_button('revert')?><?php tpl_button('subscribe')?><?php tpl_button('top')?><div style="float: right; margin-right: 10px"><?php tpl_breadcrumbs()?></div></div> 52<div class="footer"><?php tpl_pageinfo()?><?php /*old includehook*/ @include(dirname(__FILE__).'/footer.html')?><br /><center><span class="pbd"><a href="http://www.dokuwiki.org">Powered by Dokuwiki</a><?php tpl_button('index')?></span></center></div> 53<?php /* provide DokuWiki housekeeping, required in all templates */ tpl_indexerWebBug()?> 54</body> 55</html>