<?php
/**
 * DokuWiki Default Template
 *
 * This is the template you need to change for the overall look
 * of DokuWiki.
 *
 * You should leave the doctype at the very top - It should
 * always be the very first line of a document.
 *
 * @link   http://dokuwiki.org/templates
 * @author Andreas Gohr <andi@splitbrain.org>
 */

// must be run from within DokuWiki
if (!defined('DOKU_INC')) die();

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>"
 lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <?php include('custom/custom_functions.php') ?>
  <title>
    <?php tpl_pagetitle()?>
    [<?php echo strip_tags($conf['title'])?>]
  </title>

  <style type="text/css">
    
  </style>

  <link rel="stylesheet" type="text/css" href="<?php echo DOKU_TPL?>mlf.css" />

  <?php tpl_metaheaders()?>

  <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />

  <?php /*old includehook*/ @include(dirname(__FILE__).'/meta.html')?>
</head>
<body>
<div class="header">
<div class="title"><?php echo "<a class='header' href='doku.php' name='doku__top' accesskey='H'>", $conf['title'] ,"</a>" ?></div>
<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>
</div>
<div class="nav"><?php $fns = strpos($ID, ":"); if ($fns === false) { $FID = $ID; } else { $FID = substr($ID, 0, $fns); };dyn_links($FID) ?></div>
<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>
<div class="content"><div class="dokuwiki"><?php tpl_content()?></div></div>
<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>
<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>
<?php /* provide DokuWiki housekeeping, required in all templates */ tpl_indexerWebBug()?>
</body>
</html>