You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

170 lines
7.8 KiB

14 years ago
14 years ago
14 years ago
12 years ago
14 years ago
14 years ago
12 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
  1. <?php
  2. /**
  3. * DokuWiki Starter Template
  4. *
  5. * @link http://dokuwiki.org/template:starter
  6. * @author Anika Henke <anika@selfthinker.org>
  7. * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
  8. */
  9. if (!defined('DOKU_INC')) die(); /* must be run from within DokuWiki */
  10. @require_once(dirname(__FILE__).'/tpl_functions.php'); /* include hook for template functions */
  11. $showTools = !tpl_getConf('hideTools') || ( tpl_getConf('hideTools') && $_SERVER['REMOTE_USER'] );
  12. ?><!DOCTYPE html>
  13. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang'] ?>"
  14. lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>" class="no-js">
  15. <head>
  16. <meta charset="UTF-8" />
  17. <!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /><![endif]-->
  18. <title><?php tpl_pagetitle() ?> [<?php echo strip_tags($conf['title']) ?>]</title>
  19. <script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script>
  20. <?php tpl_metaheaders() ?>
  21. <meta name="viewport" content="width=device-width,initial-scale=1" />
  22. <?php echo tpl_favicon(array('favicon', 'mobile')) ?>
  23. <?php tpl_includeFile('meta.html') ?>
  24. </head>
  25. <body>
  26. <?php /* with these Conditional Comments you can better address IE issues in CSS files,
  27. precede CSS rules by #IE6 for IE6, #IE7 for IE7 and #IE8 for IE8 (div closes at the bottom) */ ?>
  28. <!--[if IE 6 ]><div id="IE6"><![endif]--><!--[if IE 7 ]><div id="IE7"><![endif]--><!--[if IE 8 ]><div id="IE8"><![endif]-->
  29. <?php /* the "dokuwiki__top" id is needed somewhere at the top, because that's where the "back to top" button/link links to */ ?>
  30. <?php /* classes mode_<action> are added to make it possible to e.g. style a page differently if it's in edit mode,
  31. see http://www.dokuwiki.org/devel:action_modes for a list of action modes */ ?>
  32. <?php /* .dokuwiki should always be in one of the surrounding elements (e.g. plugins and templates depend on it) */ ?>
  33. <div id="dokuwiki__site"><div id="dokuwiki__top"
  34. class="dokuwiki site mode_<?php echo $ACT ?>">
  35. <?php html_msgarea() /* occasional error and info messages on top of the page */ ?>
  36. <?php tpl_includeFile('header.html') ?>
  37. <!-- ********** HEADER ********** -->
  38. <div id="dokuwiki__header"><div class="pad">
  39. <div class="headings">
  40. <h1><?php tpl_link(wl(),$conf['title'],'accesskey="h" title="[H]"') ?></h1>
  41. <?php /* how to insert logo instead (if no CSS image replacement technique is used):
  42. upload your logo into the data/media folder (root of the media manager) and replace 'logo.png' accordingly:
  43. tpl_link(wl(),'<img src="'.ml('logo.png').'" alt="'.$conf['title'].'" />','id="dokuwiki__top" accesskey="h" title="[H]"') */ ?>
  44. <?php if ($conf['tagline']): ?>
  45. <p class="claim"><?php echo $conf['tagline'] ?></p>
  46. <?php endif ?>
  47. <ul class="a11y skip">
  48. <li><a href="#dokuwiki__content"><?php echo $lang['skip_to_content'] ?></a></li>
  49. </ul>
  50. <div class="clearer"></div>
  51. </div>
  52. <div class="tools">
  53. <!-- USER TOOLS -->
  54. <?php if ($conf['useacl'] && $showTools): ?>
  55. <div id="dokuwiki__usertools">
  56. <h3 class="a11y"><?php echo $lang['user_tools'] ?></h3>
  57. <ul>
  58. <?php /* the optional second parameter of tpl_action() switches between a link and a button,
  59. e.g. a button inside a <li> would be: tpl_action('edit', 0, 'li') */
  60. if ($_SERVER['REMOTE_USER']) {
  61. echo '<li class="user">';
  62. tpl_userinfo(); /* 'Logged in as ...' */
  63. echo '</li>';
  64. }
  65. tpl_action('admin', 1, 'li');
  66. _tpl_action('userpage', 1, 'li');
  67. tpl_action('profile', 1, 'li');
  68. tpl_action('register', 1, 'li'); /* DW versions < 2011-02-20 need to use _tpl_action('register', 1, 'li') */
  69. tpl_action('login', 1, 'li');
  70. ?>
  71. </ul>
  72. </div>
  73. <?php endif ?>
  74. <!-- SITE TOOLS -->
  75. <div id="dokuwiki__sitetools">
  76. <h3 class="a11y"><?php echo $lang['site_tools'] ?></h3>
  77. <?php tpl_searchform() ?>
  78. <ul>
  79. <?php
  80. tpl_action('recent', 1, 'li');
  81. tpl_action('media', 1, 'li');
  82. tpl_action('index', 1, 'li');
  83. ?>
  84. </ul>
  85. </div>
  86. </div>
  87. <div class="clearer"></div>
  88. <!-- BREADCRUMBS -->
  89. <?php if($conf['breadcrumbs']){ ?>
  90. <div class="breadcrumbs"><?php tpl_breadcrumbs() ?></div>
  91. <?php } ?>
  92. <?php if($conf['youarehere']){ ?>
  93. <div class="breadcrumbs"><?php tpl_youarehere() ?></div>
  94. <?php } ?>
  95. <div class="clearer"></div>
  96. <hr class="a11y" />
  97. </div></div><!-- /header -->
  98. <div class="wrapper">
  99. <!-- ********** ASIDE ********** -->
  100. <div id="dokuwiki__aside"><div class="pad include">
  101. <?php tpl_sidebar() /* includes the nearest sidebar page */ ?>
  102. <div class="clearer"></div>
  103. </div></div><!-- /aside -->
  104. <!-- ********** CONTENT ********** -->
  105. <div id="dokuwiki__content"><div class="pad">
  106. <?php tpl_flush() /* flush the output buffer */ ?>
  107. <?php tpl_includeFile('pageheader.html') ?>
  108. <div class="page">
  109. <!-- wikipage start -->
  110. <?php tpl_content() /* the main content */ ?>
  111. <!-- wikipage stop -->
  112. <div class="clearer"></div>
  113. </div>
  114. <?php tpl_flush() ?>
  115. <?php tpl_includeFile('pagefooter.html') ?>
  116. </div></div><!-- /content -->
  117. <div class="clearer"></div>
  118. <hr class="a11y" />
  119. <!-- PAGE ACTIONS -->
  120. <?php if ($showTools): ?>
  121. <div id="dokuwiki__pagetools">
  122. <h3 class="a11y"><?php echo $lang['page_tools'] ?></h3>
  123. <ul>
  124. <?php
  125. tpl_action('edit', 1, 'li');
  126. _tpl_action('discussion', 1, 'li');
  127. tpl_action('revisions', 1, 'li');
  128. tpl_action('backlink', 1, 'li');
  129. tpl_action('subscribe', 1, 'li');
  130. tpl_action('revert', 1, 'li');
  131. tpl_action('top', 1, 'li');
  132. ?>
  133. </ul>
  134. </div>
  135. <?php endif; ?>
  136. </div><!-- /wrapper -->
  137. <!-- ********** FOOTER ********** -->
  138. <div id="dokuwiki__footer"><div class="pad">
  139. <div class="doc"><?php tpl_pageinfo() /* 'Last modified' etc */ ?></div>
  140. <?php tpl_license('button') /* content license, parameters: img=*badge|button|0, imgonly=*0|1, return=*0|1 */ ?>
  141. </div></div><!-- /footer -->
  142. <?php tpl_includeFile('footer.html') ?>
  143. </div></div><!-- /site -->
  144. <div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div>
  145. <!--[if ( IE 6 | IE 7 | IE 8 ) ]></div><![endif]-->
  146. </body>
  147. </html>