1<?php 2 3// must be run from within DokuWiki 4if (!defined('DOKU_INC')) die(); 5 6?> 7<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 8 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 9 10 11 12<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 13<html xmlns="http://www.w3.org/1999/xhtml"> 14<head> 15 16 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 17 <title> 18 <?php tpl_pagetitle()?> 19 [<?php echo strip_tags($conf['title'])?>] 20 </title> 21 22 <?php tpl_metaheaders()?> 23 24 <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" /> 25 26 <?php /*old includehook*/ @include(dirname(__FILE__).'/meta.html')?> 27</head> 28 29<body> 30<div id="bgcontain"><div id="bgcontain-all"> 31<!-- header START --> 32 33<div class="header"> 34 <div class="logo"> 35 <div class="txt"> 36 <h6><?php tpl_link(wl(),$conf['title'],'name="dokuwiki__top" id="dokuwiki__top" accesskey="h" title="[H]"')?></h6> 37 </div> 38 </div> 39 <div class="search"> 40 <?php tpl_searchform()?> 41 </div> 42</div> 43<!-- header END --> 44 45<div class="dokuwiki"> 46 47 48 <div class="bar" id="bar__top"> 49 <div class="bar-left" id="bar__topleft"> 50 <?php tpl_button('edit')?> 51 <?php tpl_button('history')?> 52 <?php tpl_button('revert')?> 53 </div> 54 <div class="bar-right" id="bar__topright"> 55 <?php tpl_button('recent')?> 56 <?php tpl_button('subscribe')?> 57 <?php tpl_button('admin')?> 58 <?php tpl_button('profile')?> 59 <?php tpl_button('login')?> 60 <?php tpl_button('index')?> 61 62 </div> 63 <div class="clearer"></div> 64 </div> 65 66 67<!-- container START --> 68<div class="container"> 69<!--Start Side Central (SC)--> 70<div class="SC SCL"> 71 72<!--Start Side Left--> 73<div class="SL"> 74<!--Start Post--> 75<div class="post"> 76 <div class="p-con"> 77 78 79<?php /*old includehook*/ @include(dirname(__FILE__).'/topheader.html')?> 80 <?php html_msgarea()?> 81 82 83 <div class="stylehead"> 84 85 <?php /*old includehook*/ @include(dirname(__FILE__).'/header.html')?> 86 87 <?php if($conf['breadcrumbs']){?> 88 <div class="breadcrumbs"> 89 <?php tpl_breadcrumbs()?> 90 <?php //tpl_youarehere() //(some people prefer this)?> 91 </div> 92 <?php }?> 93 94 <?php if($conf['youarehere']){?> 95 <div class="breadcrumbs"> 96 <?php tpl_youarehere() ?> 97 </div> 98 <?php }?> 99 100 </div> 101 <?php tpl_flush()?> 102 103 <?php /*old includehook*/ @include(dirname(__FILE__).'/pageheader.html')?> 104 105 106 <div class="page"> 107 <!-- wikipage start --> 108 <?php tpl_content()?> 109 <!-- wikipage stop --> 110 </div> 111 112 113 <div class="clearer"> </div> 114 115 <?php tpl_flush()?> 116 117 118 119</div> 120<div class="no"><?php /* provide DokuWiki housekeeping, required in all templates */ tpl_indexerWebBug()?></div> 121 122</div> 123 </div> 124<!--End Post--> 125<!--Start Side Right--> 126<div class="SR"> 127 128 129<div class="widget widget_archive"> 130<h2>Link categories 1</h2> 131<ul> 132<li > <a href="" class="wikilink1" >link 1</a> 133</li> 134<li > <a href="" class="wikilink1" >link 1</a> 135</li> 136<li > <a href="" class="wikilink1" >link 1</a> 137</li> 138<li > <a href="" class="wikilink1" >link 1</a> 139</li> 140</ul> 141</div> 142 143 144<div class="widget widget_archive"> 145<h2>Link categories 2</h2> 146<ul> 147<li > <a href="" class="wikilink1" >link 1</a> 148</li> 149<li > <a href="" class="wikilink1" >link 1</a> 150</li> 151<li > <a href="" class="wikilink1" >link 1</a> 152</li> 153<li > <a href="" class="wikilink1" >link 1</a> 154</li> 155</ul> 156</div> 157 158 159</div> 160<!--End Side Right--> 161 162</div> 163<!--End Side Central (SC)--> 164 165</div> 166<!-- container END --> 167 168 169<!--Start Footer--> 170<div class="footer"> 171<hr style="display:block;" /> 172<?php tpl_license(false);?> 173 174<center><p>tr-money is created by: <a href="https://www.mohdshakir.net/" title="Mohd Shakir Zakaria" rel="nofollow">Mohd Shakir Zakaria</a> for <a href="https://docs.oseems.com" title="osDocs" rel="nofollow">osDocs</a> 175based on MoneyBlog Wordpress theme by <a href="http://designdisease.com/" rel="nofollow">Design Disease</a></p> 176</center> 177</div> 178<!--End Footer--> 179 180</div></div> 181 182</body> 183</html> 184