Lines Matching refs:php
1 <?php
11 @require_once(dirname(__FILE__).'/tpl_functions.php'); /* include hook for template functions */
21 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang'] ?>"
22 lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>" class="no-js">
26 <title><?php tpl_pagetitle() ?> [<?php echo strip_tags($conf['title']) ?>]</title>
28 <?php tpl_metaheaders() ?>
30 <?php echo tpl_favicon(array('favicon', 'mobile')) ?>
31 <?php tpl_includeFile('meta.html') ?>
35 <?php /* with these Conditional Comments you can better address IE issues in CSS files,
39 …<?php /* the "dokuwiki__top" id is needed somewhere at the top, because that's where the "back to …
40 …<?php /* classes mode_<action> are added to make it possible to e.g. style a page differently if i…
42 …<?php /* .dokuwiki should always be in one of the surrounding elements (e.g. plugins and templates…
44 … class="dokuwiki site mode_<?php echo $ACT ?> <?php echo ($showSidebar) ? 'hasSidebar' : '' ?>">
45 <?php tpl_includeFile('header.html') ?>
47 <?php } /* end of non-pajx header */ ?>
50 data-jw='{ "jokuwiki" : "pjaxTitle", "data" : { "id" : "pjaxTitle", "title" : "<?php
58 <?php html_msgarea() /*
64 <h1><?php tpl_link(wl(),$conf['title'],'accesskey="h" title="[H]"') ?></h1>
65 <?php /* how to insert logo instead (if no CSS image replacement technique is used):
68 <?php if ($conf['tagline']): ?>
69 <p class="claim"><?php echo $conf['tagline'] ?></p>
70 <?php endif ?>
73 <li><a href="#dokuwiki__content"><?php echo $lang['skip_to_content'] ?></a></li>
79 <?php if ($conf['useacl'] && $showTools){ ?>
81 <h3 class="a11y"><?php echo $lang['user_tools'] ?></h3>
83 … <?php /* the optional second parameter of tpl_action() switches between a link and a button,
98 <?php } ?>
102 <h3 class="a11y"><?php echo $lang['site_tools'] ?></h3>
103 <?php tpl_searchform() ?>
105 <?php
117 <?php if($conf['breadcrumbs']){ ?>
118 <div class="breadcrumbs"><?php tpl_breadcrumbs() ?></div>
119 <?php } ?>
120 <?php if($conf['youarehere']){ ?>
121 <div class="breadcrumbs"><?php tpl_youarehere() ?></div>
122 <?php } ?>
132 <?php if ($showSidebar): ?>
134 <?php tpl_includeFile('sidebarheader.html') ?>
135 … <?php tpl_include_page($conf['sidebar'], 1, 1) /* includes the nearest sidebar page */ ?>
136 <?php tpl_includeFile('sidebarfooter.html') ?>
139 <?php endif; ?>
143 <?php tpl_flush() /* flush the output buffer */ ?>
144 <?php tpl_includeFile('pageheader.html') ?>
148 <?php tpl_content() /* the main content */ ?>
153 <?php tpl_flush() ?>
154 <?php tpl_includeFile('pagefooter.html') ?>
161 <?php if ($showTools): ?>
163 <h3 class="a11y"><?php echo $lang['page_tools'] ?></h3>
165 <?php
176 <?php endif; ?>
181 <div class="doc"><?php tpl_pageinfo() /* 'Last modified' etc */ ?></div>
182 …<?php tpl_license('button') /* content license, parameters: img=*badge|button|0, imgonly=*0|1, ret…
184 …<div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templa…
185 <?php if ('true'!==$_SERVER['HTTP_X_PJAX']) { ?>
187 <?php tpl_includeFile('footer.html') ?>
189 <script src="<?php print DOKU_TPL . 'jquery.pjax.js'; ?>" defer></script>
190 <script src="<?php print DOKU_TPL . 'util.js'; ?>" defer></script>
194 <?php } /* end of non-pjax footer */