2020-04-25 10:01:47 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Khum1 DokuWiki Template 2020 (based on Zen, based on Default template)
|
|
|
|
*
|
|
|
|
* @link http://dokuwiki.org/template
|
|
|
|
* @author Zatalyz <zatalyz@liev.re>
|
|
|
|
* @author Anika Henke <anika@selfthinker.org>
|
|
|
|
* @author Clarence Lee <clarencedglee@gmail.com>
|
|
|
|
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('DOKU_INC')) die(); /* must be run from within DokuWiki */
|
|
|
|
header('X-UA-Compatible: IE=edge,chrome=1');
|
|
|
|
|
|
|
|
$hasSidebar = page_findnearest($conf['sidebar']);
|
|
|
|
$showSidebar = $hasSidebar && ($ACT=='show');
|
|
|
|
?><!DOCTYPE html>
|
|
|
|
<html lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>" class="no-js">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title><?php tpl_pagetitle() ?> [<?php echo strip_tags($conf['title']) ?>]</title>
|
|
|
|
<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script>
|
|
|
|
<?php tpl_metaheaders() ?>
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<?php echo tpl_favicon(array('favicon', 'mobile')) ?>
|
|
|
|
<?php tpl_includeFile('meta.html') ?>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2020-06-03 17:51:00 +00:00
|
|
|
<?php tpl_includeFile('header.php'); ?>
|
2020-04-25 10:01:47 +00:00
|
|
|
|
|
|
|
<div id="dokuwiki__top" class="site <?php echo tpl_classes(); ?> <?php
|
|
|
|
echo ($showSidebar) ? 'showSidebar' : ''; ?> <?php echo ($hasSidebar) ? 'hasSidebar' : ''; ?>">
|
|
|
|
|
|
|
|
<!-- Jump to content (accessibility -->
|
|
|
|
<ul class="a11y skip">
|
|
|
|
<li><a href="#dokuwiki__content"><?php echo $lang['skip_to_content']; ?></a></li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<!-- ********** HEADER ********** -->
|
|
|
|
<header id="dokuwiki__header">
|
|
|
|
|
|
|
|
<!-- Menu spécial mobiles -->
|
|
|
|
<div class="mobileTools">
|
|
|
|
<?php echo (new \dokuwiki\Menu\MobileMenu())->getDropdown($lang['tools']); ?>
|
|
|
|
<?php tpl_searchform(); ?>
|
|
|
|
<!-- translation (only with Translation Plugin) -->
|
|
|
|
<?php
|
|
|
|
$translation = plugin_load('helper','translation');
|
|
|
|
if ($translation) echo $translation->showTranslations();
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- logo, wiki title, tagline, breadcrumb -->
|
|
|
|
<div class="headings">
|
|
|
|
<h1><?php
|
|
|
|
// get logo either out of the template images folder or data/media folder
|
|
|
|
$logo = tpl_getMediaFile(array(':wiki:logo.png', ':logo.png', 'images/logo.png'), false);
|
|
|
|
|
|
|
|
// display logo and wiki title in a link to the home page
|
|
|
|
// Add <span>'.$conf['title'].'</span> after img to have Wiki Title display
|
|
|
|
tpl_link(
|
|
|
|
wl(),
|
|
|
|
'<img src="'.$logo.'" '.$logoSize[3].' alt="'.$conf['title'].'" /> ',
|
|
|
|
'accesskey="h" title="[H] '.$conf['title'].'"'
|
|
|
|
);
|
|
|
|
?></h1>
|
|
|
|
<?php if ($conf['tagline']): ?>
|
|
|
|
<p class="claim"><?php echo $conf['tagline']; ?></p>
|
|
|
|
<?php endif ?>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<hr class="a11y" />
|
|
|
|
<!-- /header -->
|
|
|
|
|
|
|
|
|
|
|
|
<div id="dokuwiki__site">
|
|
|
|
<!--<div class="pad group">-->
|
|
|
|
<div class="wrapper group">
|
|
|
|
|
|
|
|
<!-- ********** Sidebar ********** -->
|
2020-06-03 16:03:33 +00:00
|
|
|
<?php if($showSidebar): ?>
|
2020-04-25 10:01:47 +00:00
|
|
|
<nav id="dokuwiki__sidebar">
|
2020-06-03 16:35:29 +00:00
|
|
|
<div class="biseau_left_top nomobile"></div>
|
|
|
|
<h3 class="toggle"><?php //echo $lang['sidebar'] ?></h3>
|
2020-04-25 10:01:47 +00:00
|
|
|
<div class="pad sidebar include group">
|
|
|
|
<div class="content"><div class="group">
|
|
|
|
<?php tpl_flush() ?>
|
|
|
|
<?php tpl_include_page($conf['sidebar'], true, true) ?>
|
|
|
|
</div></div>
|
|
|
|
</div>
|
|
|
|
<div class="biseau_2_bottom nomobile"></div>
|
2020-06-03 16:03:33 +00:00
|
|
|
</nav>
|
|
|
|
<?php endif; ?>
|
|
|
|
<!-- /Sidebar -->
|
2020-04-25 10:01:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ********** Article ********** -->
|
|
|
|
<div id="dokuwiki__content"><div class="pad group">
|
|
|
|
<?php html_msgarea() ?>
|
|
|
|
|
|
|
|
<!-- ********** Tab ********** -->
|
|
|
|
<div class="tabblocks">
|
|
|
|
<div class="nomobile">
|
|
|
|
|
|
|
|
<ul class="tab_ul">
|
|
|
|
<?php
|
|
|
|
foreach ( (new \dokuwiki\Menu\PageMenu())->getItems() as $item ) {
|
|
|
|
if ( preg_match('/^childrenpages_/', $item->getType()) ) {
|
2020-05-01 12:09:47 +00:00
|
|
|
if ( $item->is_active ) {
|
|
|
|
echo '<li class="current_page"><div class="toptab_current_page"></div>'.$item->asHtmlLink(false, true).'</li>';
|
|
|
|
} else {
|
|
|
|
echo '<li><div class="toptab"></div>'.$item->asHtmlLink(false, true).'</li>';
|
|
|
|
}
|
2020-04-25 10:01:47 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-01 12:09:47 +00:00
|
|
|
|
2020-04-25 10:01:47 +00:00
|
|
|
?>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="biseau_right_top"></div>
|
|
|
|
<div class="page group">
|
|
|
|
|
|
|
|
|
|
|
|
<?php tpl_flush() ?>
|
|
|
|
<?php tpl_includeFile('pageheader.html') ?>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- wikipage start -->
|
2020-06-03 16:35:29 +00:00
|
|
|
<?php tpl_toc(true) ?>
|
2020-04-25 10:01:47 +00:00
|
|
|
<article class="kharticle">
|
2020-06-03 16:35:29 +00:00
|
|
|
<?php tpl_content(true) ?>
|
2020-04-25 10:01:47 +00:00
|
|
|
</article>
|
|
|
|
<!-- wikipage stop -->
|
|
|
|
<?php tpl_includeFile('pagefooter.html') ?>
|
|
|
|
</div>
|
|
|
|
<div class="biseau_2_bottom"></div>
|
|
|
|
<footer class="article_footer">
|
|
|
|
<div class="buttons">
|
|
|
|
<?php
|
|
|
|
tpl_license('button', true, false, false); // license button, no wrapper
|
|
|
|
$target = ($conf['target']['extern']) ? 'target="'.$conf['target']['extern'].'"' : '';
|
|
|
|
?>
|
|
|
|
<a href="https://dokuwiki.org/" title="Driven by DokuWiki" <?php echo $target?>><img
|
|
|
|
src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a>
|
|
|
|
</div>
|
|
|
|
<div class="docInfo"><?php tpl_pageinfo() ?></div>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
<?php tpl_flush() ?>
|
|
|
|
</div></div><!-- /article -->
|
|
|
|
|
|
|
|
<hr class="a11y" />
|
|
|
|
|
|
|
|
<!-- ********** Right menu (tools) ********** -->
|
2020-06-03 08:45:00 +00:00
|
|
|
<div>
|
2020-04-25 10:01:47 +00:00
|
|
|
<nav class="nomobile navtool">
|
|
|
|
<div class="biseau_right_top nomobile"></div>
|
|
|
|
<div class="nomobile bartool"
|
|
|
|
|
|
|
|
|
|
|
|
<!-- searchtool-->
|
|
|
|
<div class="searchtool nomobile">
|
|
|
|
<?php tpl_searchform(); ?>
|
|
|
|
</div>
|
|
|
|
<!-- You are here -->
|
|
|
|
<?php if($conf['youarehere']): ?>
|
|
|
|
<div class="youarehere nomobile"><?php tpl_youarehere() ?></div>
|
|
|
|
<hr class="nomobile">
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
<!-- Page Actions -->
|
|
|
|
<div class="dokuwiki__tools nomobile">
|
|
|
|
<h3 class="a11y"><?php echo $lang['page_tools']; ?></h3>
|
|
|
|
<ul>
|
|
|
|
<?php
|
|
|
|
$data = array(
|
|
|
|
//'view' => 'main',
|
|
|
|
'items' => array(
|
|
|
|
'edit' => tpl_action('edit', true, 'li', true, '<span>', '</span>'),
|
|
|
|
'revert' => tpl_action('revert', true, 'li', true, '<span>', '</span>'),
|
|
|
|
'revisions' => tpl_action('revisions', true, 'li', true, '<span>', '</span>'),
|
|
|
|
'backlink' => tpl_action('backlink', true, 'li', true, '<span>', '</span>'),
|
2020-06-03 16:35:29 +00:00
|
|
|
'subscribe' => tpl_action('subscribe', true, 'li', true, '<span>', '</span>')
|
2020-04-25 10:01:47 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
// the page tools can be amended through a custom plugin hook
|
|
|
|
$evt = new Doku_Event('TEMPLATE_PAGETOOLS_DISPLAY', $data);
|
|
|
|
if($evt->advise_before()){
|
|
|
|
foreach($evt->data['items'] as $k => $html) echo $html;
|
|
|
|
}
|
|
|
|
$evt->advise_after();
|
|
|
|
unset($data);
|
|
|
|
unset($evt);
|
|
|
|
?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr class="nomobile">
|
|
|
|
|
|
|
|
<!-- usertools and sitetools -->
|
|
|
|
<div class="dokuwiki__tools nomobile">
|
|
|
|
<?php if ($conf['useacl']): ?>
|
|
|
|
<h3 class="a11y"><?php echo $lang['user_tools']; ?></h3>
|
|
|
|
<ul><?php
|
|
|
|
// Afficher lien interwiki user
|
|
|
|
if (!empty($_SERVER['REMOTE_USER'])) {
|
|
|
|
echo '<li class="user">';
|
|
|
|
$loginname = $_SERVER["REMOTE_USER"];
|
|
|
|
$kh_userpage = tpl_getLang('kh_userpage');
|
|
|
|
echo "$kh_userpage ";
|
|
|
|
echo (tpl_getConf("khum1_userpage")
|
|
|
|
? html_wikilink(tpl_getConf("khum1_userpage_ns").$loginname, hsc($loginname))
|
|
|
|
: hsc($loginname));
|
|
|
|
echo '</li>';
|
|
|
|
}
|
|
|
|
// le reste des appels (pas mal de modif, attention aux comportements étranges ?)
|
|
|
|
tpl_toolsevent('tools', array(
|
|
|
|
tpl_action('admin', true, 'li', true),
|
|
|
|
tpl_action('profile', true, 'li', true),
|
|
|
|
tpl_action('media', true, 'li', true),
|
|
|
|
tpl_action('recent', true, 'li', true),
|
|
|
|
tpl_action('index', true, 'li', true),
|
|
|
|
tpl_action('register', true, 'li', true),
|
|
|
|
tpl_action('login', true, 'li', true),
|
|
|
|
));
|
|
|
|
?></ul>
|
|
|
|
<?php endif ?>
|
|
|
|
</div>
|
|
|
|
<hr class="nomobile">
|
|
|
|
|
|
|
|
<!-- translation (only with Translation Plugin) -->
|
|
|
|
<div>
|
|
|
|
<?php
|
|
|
|
$translation = plugin_load('helper','translation');
|
|
|
|
if ($translation) echo $translation->showTranslations();
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Breadcrumbs -->
|
|
|
|
<?php if($conf['breadcrumbs']): ?>
|
|
|
|
<div class="trace nomobile"><div><?php tpl_breadcrumbs() ?></div></div>
|
|
|
|
<?php endif ?>
|
|
|
|
</div>
|
|
|
|
<div class="biseau_2_bottom nomobile"></div>
|
|
|
|
</nav>
|
|
|
|
<div class="to_top">
|
2020-06-03 08:45:00 +00:00
|
|
|
<a href="#dokuwiki__top" class="action top" accesskey="t" rel="nofollow" title="Haut de page [T]">
|
|
|
|
<img src="<?php echo tpl_basedir(); ?>/images/top.png" / title="Haut de page [T]"></img>
|
|
|
|
</a>
|
2020-04-25 10:01:47 +00:00
|
|
|
</div>
|
2020-06-03 08:45:00 +00:00
|
|
|
<div>
|
2020-04-25 10:01:47 +00:00
|
|
|
|
|
|
|
</div><!-- /wrapper -->
|
|
|
|
</div><!-- dokuwiki__site-->
|
|
|
|
|
|
|
|
</div><!-- /site -->
|
|
|
|
|
|
|
|
<div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div>
|
|
|
|
<div id="screen__mode" class="no"></div><?php /* helper to detect CSS media query in script.js */ ?>
|
2020-06-03 17:51:00 +00:00
|
|
|
<?php tpl_includeFile('footer.php'); ?>
|
2020-04-25 10:01:47 +00:00
|
|
|
</body>
|
|
|
|
</html>
|