10e336ca8SAndreas Gohr<?php 2*d4f83172SAndreas Gohr 30e336ca8SAndreas Gohr/** 40e336ca8SAndreas Gohr * DokuWiki Default Template 2012 50e336ca8SAndreas Gohr * 60e336ca8SAndreas Gohr * @link http://dokuwiki.org/template 70e336ca8SAndreas Gohr * @author Anika Henke <anika@selfthinker.org> 80e336ca8SAndreas Gohr * @author Clarence Lee <clarencedglee@gmail.com> 90e336ca8SAndreas Gohr * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 100e336ca8SAndreas Gohr */ 110e336ca8SAndreas Gohr 120e336ca8SAndreas Gohrif (!defined('DOKU_INC')) die(); /* must be run from within DokuWiki */ 130e336ca8SAndreas Gohr 14fc8dc822SAnika Henke$hasSidebar = page_findnearest($conf['sidebar']); 15fc8dc822SAnika Henke$showSidebar = $hasSidebar && ($ACT == 'show'); 16c0670a18SAnika Henke?><!DOCTYPE html> 17c0670a18SAnika Henke<html lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>" class="no-js"> 180e336ca8SAndreas Gohr<head> 19d22cdf50SAnika Henke <meta charset="utf-8" /> 200e336ca8SAndreas Gohr <title><?php tpl_pagetitle() ?> [<?php echo strip_tags($conf['title']) ?>]</title> 210e336ca8SAndreas Gohr <?php tpl_metaheaders() ?> 220e336ca8SAndreas Gohr <meta name="viewport" content="width=device-width,initial-scale=1" /> 23f90148d3SAndreas Gohr <?php echo tpl_favicon(['favicon', 'mobile']) ?> 24e5d4768dSAndreas Gohr <?php tpl_includeFile('meta.html') ?> 250e336ca8SAndreas Gohr</head> 260e336ca8SAndreas Gohr 270e336ca8SAndreas Gohr<body> 28c71db656SAnika Henke <div id="dokuwiki__site"><div id="dokuwiki__top" class="site <?php echo tpl_classes(); ?> <?php 29c71db656SAnika Henke echo ($showSidebar) ? 'showSidebar' : ''; ?> <?php echo ($hasSidebar) ? 'hasSidebar' : ''; ?>"> 300e336ca8SAndreas Gohr 31f90148d3SAndreas Gohr <?php include(__DIR__ . '/tpl_header.php') ?> 320e336ca8SAndreas Gohr 330e336ca8SAndreas Gohr <div class="wrapper group"> 340e336ca8SAndreas Gohr 350e336ca8SAndreas Gohr <?php if ($showSidebar) : ?> 360e336ca8SAndreas Gohr <!-- ********** ASIDE ********** --> 37834b0b20SAnika Henke <nav id="dokuwiki__aside" aria-label="<?php echo $lang['sidebar'] 38834b0b20SAnika Henke ?>"><div class="pad aside include group"> 39a655c878SAnika Henke <h3 class="toggle"><?php echo $lang['sidebar'] ?></h3> 4082246f10SAndreas Gohr <div class="content"><div class="group"> 4157fc5eddSAnika Henke <?php tpl_flush() ?> 42e5d4768dSAndreas Gohr <?php tpl_includeFile('sidebarheader.html') ?> 43e0c26282SGerrit Uitslag <?php tpl_include_page($conf['sidebar'], true, true) ?> 44e5d4768dSAndreas Gohr <?php tpl_includeFile('sidebarfooter.html') ?> 4582246f10SAndreas Gohr </div></div> 46834b0b20SAnika Henke </div></nav><!-- /aside --> 470e336ca8SAndreas Gohr <?php endif; ?> 480e336ca8SAndreas Gohr 490e336ca8SAndreas Gohr <!-- ********** CONTENT ********** --> 50834b0b20SAnika Henke <main id="dokuwiki__content"><div class="pad group"> 51eba389bbSAndreas Gohr <?php html_msgarea() ?> 520e336ca8SAndreas Gohr 530e336ca8SAndreas Gohr <div class="pageId"><span><?php echo hsc($ID) ?></span></div> 540e336ca8SAndreas Gohr 550e336ca8SAndreas Gohr <div class="page group"> 560e336ca8SAndreas Gohr <?php tpl_flush() ?> 57e5d4768dSAndreas Gohr <?php tpl_includeFile('pageheader.html') ?> 580e336ca8SAndreas Gohr <!-- wikipage start --> 5957fc5eddSAnika Henke <?php tpl_content() ?> 600e336ca8SAndreas Gohr <!-- wikipage stop --> 61e5d4768dSAndreas Gohr <?php tpl_includeFile('pagefooter.html') ?> 620e336ca8SAndreas Gohr </div> 630e336ca8SAndreas Gohr 6457fc5eddSAnika Henke <div class="docInfo"><?php tpl_pageinfo() ?></div> 650e336ca8SAndreas Gohr 660e336ca8SAndreas Gohr <?php tpl_flush() ?> 670e336ca8SAndreas Gohr 680e336ca8SAndreas Gohr <hr class="a11y" /> 69834b0b20SAnika Henke </div></main><!-- /content --> 700e336ca8SAndreas Gohr 710e336ca8SAndreas Gohr <!-- PAGE ACTIONS --> 72834b0b20SAnika Henke <nav id="dokuwiki__pagetools" aria-labelledby="dokuwiki__pagetools__heading"> 73834b0b20SAnika Henke <h3 class="a11y" id="dokuwiki__pagetools__heading"><?php echo $lang['page_tools']; ?></h3> 740e336ca8SAndreas Gohr <div class="tools"> 750e336ca8SAndreas Gohr <ul> 762852cbd2SAndreas Gohr <?php echo (new \dokuwiki\Menu\PageMenu())->getListItems(); ?> 770e336ca8SAndreas Gohr </ul> 780e336ca8SAndreas Gohr </div> 79834b0b20SAnika Henke </nav> 800e336ca8SAndreas Gohr </div><!-- /wrapper --> 810e336ca8SAndreas Gohr 82f90148d3SAndreas Gohr <?php include(__DIR__ . '/tpl_footer.php') ?> 830e336ca8SAndreas Gohr </div></div><!-- /site --> 840e336ca8SAndreas Gohr 850e336ca8SAndreas Gohr <div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div> 8685159e75SAnika Henke <div id="screen__mode" class="no"></div><?php /* helper to detect CSS media query in script.js */ ?> 870e336ca8SAndreas Gohr</body> 880e336ca8SAndreas Gohr</html> 89