1<?php 2 3/** 4 * iDokuWiki Template 5 * 6 * hacked up version of the default template 7 * 8 * 9 * 10 * 11 * 12 * @link http://dokuwiki.org/templates:iDokuwiki 13 * @author hiflyer.x <hiflyer.x@gmail.com> 14 */ 15 16// must be run from within DokuWiki 17if (!defined('DOKU_INC')) die(); 18 19 20?> 21<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 22 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 23<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" 24 lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>"> 25<head> 26 <meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" /> 27 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 28 29 30 <title> 31 <?php tpl_pagetitle()?> 32 [<?php echo strip_tags($conf['title'])?>] 33 </title> 34 35 <?php tpl_metaheaders()?> 36 37 <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" /> 38 39 <?php /*old includehook*/ @include(dirname(__FILE__).'/meta.html')?> 40 41 <script type="text/javascript"> 42 addEventListener( 43 "load", 44 function() { 45 setTimeout(hideURLbar, 0); 46 }, false 47 ); 48 function hideURLbar() { window.scrollTo(0, 1); } 49</script> 50 51 52 53</head> 54 55<body> 56 <div class="iDokuwiki_container"> 57 58 59<!-- Top Search Bar --> 60 61<?php include 'top_bar.php'; ?> 62 63<!-- End Top Searchbar --> 64 65 66<?php /*old includehook*/ @include(dirname(__FILE__).'/topheader.html')?> 67 68 69 70<div class="dokuwiki"> 71 <?php html_msgarea()?> 72 73 <?php flush()?> 74 75 <?php /*old includehook*/ @include(dirname(__FILE__).'/pageheader.html')?> 76 77 <div class="page"> 78 <!-- wikipage start --> 79 <?php tpl_content(false)?> 80 <!-- wikipage stop --> 81 </div> 82 83 <div class="clearer"> </div> 84 85 <?php flush()?> 86 87 <div class="stylefoot"> 88 89 <div class="meta"> 90 <div class="user"> 91 <?php tpl_userinfo()?> 92 </div> 93 <br> 94 <div class="doc"> 95 <?php tpl_pageinfo()?> 96 </div> 97 98 </div> 99 100 <?php /*old includehook*/ @include(dirname(__FILE__).'/pagefooter.html')?> 101 102 </div> 103 104<!-- <?php tpl_license(false);?> --!> 105 106</div> 107 108 109 110<!-- <?php /*old includehook*/ @include(dirname(__FILE__).'/footer.html')?> --!> 111 112<div class="no"><?php /* provide DokuWiki housekeeping, required in all templates */ tpl_indexerWebBug()?></div> 113 114<!-- close container --> 115</div> 116</body> 117</html> 118