<?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://wiki.splitbrain.org/wiki:tpl: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" />
  <title>
    <?php tpl_pagetitle()?>
    [<?php echo strip_tags($conf['title'])?>]
  </title>

  <?php tpl_metaheaders()?>

  <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />

  <?php /*old includehook*/ @include(dirname(__FILE__).'/meta.html')?>

<?php if (file_exists(DOKU_PLUGIN.'displaywikipage/code.php')) include_once(DOKU_PLUGIN.'displaywikipage/code.php'); ?>
</head>

<body>
<?php /*old includehook*/ @include(dirname(__FILE__).'/topheader.html')?>
<div class="dokuwiki">
  <?php html_msgarea()?>

  <div class="stylehead">

    <div class="header">
    
      <div class="logo">
        <?php tpl_link(wl(),$conf['title'],'name="dokuwiki__top" id="dokuwiki__top" accesskey="h" title="[ALT+H]"')?>
      </div>

  <div class="pagename">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        [[<?php tpl_link(wl($ID,'do=backlink'),tpl_pagetitle($ID,true),'title="'.$lang['btn_backlink'].'"')?>]]


      </div>
<?php if (function_exists('dwp_display_wiki_page')) dwp_display_wiki_page("head");?>
      <div class="clearer"></div>
    </div>

    <?php /*old includehook*/ @include(dirname(__FILE__).'/header.html')?>


<?php if($conf['breadcrumbs']){?>
    <div class="breadcrumbs">
      <?php tpl_breadcrumbs()?>
      <?php //tpl_youarehere() //(some people prefer this)?>
    </div>
    <?php }?>

    <?php if($conf['youarehere']){?>
    <div class="breadcrumbs">
      <?php tpl_youarehere() ?>
    </div>
    <?php }?>

    <div class="bar" id="bar__top">
   <?php tpl_searchform()?>&nbsp;
  <?php tpl_button('index')?>
<div class="clearer"></div>
        <?php tpl_button('edit')?>
        <?php tpl_button('history')?>
  
        <?php tpl_button('recent')?>
      <?php tpl_button('subscription')?>
       
  

<?php
$pmenu = ":menuL";
if (getNS($ID)) $pmenu = ":".getNS($ID).":menuL";
if (!page_exists($pmenu)) $pmenu = ":menuL";
if (page_exists($pmenu)){
	echo "<div class=\"menuL\" > ";
	if (function_exists('dwp_display_wiki_page')) dwp_display_wiki_page($pmenu); 
	echo "</div> ";		
	}
?>
   
  
 <?php tpl_button('admin')?>
        <?php tpl_button('profile')?>
        <?php tpl_button('login')?>


      <div class="clearer"></div>
    </div>

    

  </div>

  <?php /*old includehook*/ @include(dirname(__FILE__).'/pageheader.html')?>


 <div class="page">
    <!-- wikipage start -->
    <?php tpl_content()?>
    <!-- wikipage stop -->
  </div>




 <?php
$pmenu = ":menuR";
if (getNS($ID)) $pmenu = ":".getNS($ID).":menuR";
if (page_exists($pmenu)){
	echo "<div class=\"menuR\" > ";
	if (function_exists('dwp_display_wiki_page')) dwp_display_wiki_page($pmenu); 
	echo "</div> ";		
	}
?>




  <div class="stylefoot">

    <div class="meta">
      <div class="user">
<?php tpl_button('top')?>&nbsp;
        <?php tpl_userinfo()?>
      </div>
      <div class="doc">
        <?php tpl_pageinfo()?>
      </div>
    </div>

   <?php /*old includehook*/ @include(dirname(__FILE__).'/pagefooter.html')?>

 
      <div class="clearer"></div>


  </div>

</div>
<?php /*old includehook*/ @include(dirname(__FILE__).'/footer.html')?>

<div class="no"><?php /* provide DokuWiki housekeeping, required in all templates */ tpl_indexerWebBug()?></div>
</body>
</html>
