Lines Matching refs:TEMPLATE
16 global $TEMPLATE, $ACT, $conf, $USERINFO;
20 $hasSidebar = $TEMPLATE->sidebarExists();
30 <title><?php echo $TEMPLATE->getPageTitle() ?></title>
41 …ody class="mikio<?php echo $TEMPLATE->getConf('autoLightDark') === true ? ' mikio-auto-darklight' …
46 $TEMPLATE->includePage('topheader', true, true, 'mikio-page-topheader' .
47 (($TEMPLATE->getConf('stickyTopHeader') === true) ? ' mikio-sticky' : ''));
48 $TEMPLATE->includeNavbar(true, $ACT === 'show' && $TEMPLATE->getConf('navbarShowSub', false));
50 $TEMPLATE->includePage('header', true, true, 'mikio-page-header' .
51 (($TEMPLATE->getConf('stickyHeader') === true) ? ' mikio-sticky' : ''));
58 … ($ACT === 'show' && $TEMPLATE->getConf('youareherePosition') === 'top') || ($ACT === 'show' &&
59 …$TEMPLATE->getConf('youareherePosition') === 'hero' && $TEMPLATE->getConf('heroTitle') === false) …
62 $TEMPLATE->includeYouAreHere();
65 … ($ACT === 'show' && $TEMPLATE->getConf('breadcrumbPosition') === 'top') || ($ACT === 'show' &&
66 … $TEMPLATE->getConf('breadcrumbPosition') === 'hero' && $TEMPLATE->getConf('heroTitle') === false)
68 $TEMPLATE->includeBreadcrumbs();
70 if ($ACT === 'show' && $TEMPLATE->getConf('heroTitle') === true) {
71 $TEMPLATE->includeHero();
77 $TEMPLATE->includeSidebar();
80 if ($ACT === 'show' && $TEMPLATE->getConf('youareherePosition') === 'page') {
81 $TEMPLATE->includeYouAreHere();
83 if ($ACT === 'show' && $TEMPLATE->getConf('breadcrumbPosition') === 'page') {
84 $TEMPLATE->includeBreadcrumbs();
87 $TEMPLATE->showMessages();
89 …echo '<article class="mikio-article' . ($TEMPLATE->getConf('tocFull') === true && $TEMPLATE->hideT…
90 if($TEMPLATE->hideTOC() === false) {
91 $TEMPLATE->includeTOC();
94 $TEMPLATE->includePage('contentheader', true, true, 'mikio-page-contentheader');
96 $TEMPLATE->includeContent();
98 $TEMPLATE->includePage('contentfooter', true, true, 'mikio-page-contentfooter');
104 $showPageTools = $TEMPLATE->getConf('pageToolsFloating');
106 $ACT === 'show' && ($showPageTools === 'always' || ($TEMPLATE->userCanEdit() === true &&
109 $TEMPLATE->includePageTools(true, true);
114 $rightsidebar = $TEMPLATE->includeSidebar('right');
121 if ($ACT === 'show' && $TEMPLATE->getConf('footerInPage') === true) {
122 $TEMPLATE->includeFooter();
130 if ($ACT === 'show' && $TEMPLATE->getConf('footerInPage') === false) {
131 $TEMPLATE->includeFooter();
133 $TEMPLATE->includePage('bottomfooter', true, true, 'mikio-page-bottomfooter');
137 <?php $TEMPLATE->includeFooterMeta(); ?>