1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']; ?>" lang="<?php echo $conf['lang']; ?>" dir="<?php echo $lang['direction']; ?>"> 4<head> 5<title><?php echo $ID?> [<?php echo hsc($conf['title']); ?>]</title> 6<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 7<?php tpl_metaheaders(); ?> 8<link rel="shortcut icon" href="<?php echo DOKU_BASE; ?>lib/images/favicon.ico" /> 9<link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>wiki.css" /> 10<link rel="stylesheet" media="print" type="text/css" href="<?php echo DOKU_TPL?>print.css" /> 11<!--[if gte IE 5]> 12<style type="text/css"> 13/* that IE 5+ conditional comment makes this only visible in IE 5+ */ 14/* IE bugfix for transparent PNGs */ 15//DISABLED img { behavior: url("<?php echo DOKU_BASE; ?>lib/scripts/pngbehavior.htc"); } 16</style> 17<![endif]--> 18</head> 19<body> 20<?php /*Nucleus Wiki header */ @include(dirname(__FILE__).'/header.inc'); ?> 21 22<div class="rbroundbox"><div class="rbtop"><div><div></div></div></div> 23<div class="rbcontentwrap"><div class="rbcontent"> 24<h1 class="page_title"><?php tpl_link(wl($ID,'do=backlink'),$ID); ?></h1> 25 26<?php html_msgarea(); ?> 27 28<div class="stylehead"> 29 <?php if($conf['breadcrumbs']){?> 30 <div class="breadcrumbs"> 31 <?php // tpl_breadcrumbs(); ?> 32 <?php tpl_youarehere(); ?> 33 </div> 34 <?php }?> 35 36 <div class="bar-top" id="bar_top"> 37 <div class="bar-left" id="bar_topleft"> 38 <?php tpl_button('edit'); ?> 39 <?php tpl_button('history'); ?> 40 </div> 41 42 <div class="bar-right" id="bar_topright"> 43 <?php tpl_searchform(); ?> 44 </div> 45 </div> 46</div> 47 48<?php flush(); ?> 49 50<div class="page"> 51<!-- wikipage start --> 52<?php tpl_content(); ?> 53<!-- wikipage stop --> 54</div> 55 56<div class="clearer"> </div> 57 58<?php flush(); ?> 59 60<div class="stylefoot"> 61 <div class="meta"> 62 <div class="user"> 63 <?php tpl_userinfo(); ?> 64 </div> 65 <div class="doc"> 66 <?php tpl_pageinfo(); ?> 67 </div> 68 </div> 69</div> 70 71</div></div><div class="rbbot"><div><div></div></div></div></div> 72<?php /*Nucleus Wiki footer */ @include(dirname(__FILE__).'/footer.inc'); ?> 73</body> 74</html> 75