1<?php global $conf, $lang, $ACT, $INFO, $ID, $DOKU_BASE ?> 2 3<div id="pageheader"> 4 <!-- Messages --> 5 <div id="msgarea"> 6 <?php html_msgarea() ?> 7 </div> 8 9 <div style="display:flex;align-items:center"> 10 <!-- Breadcrumbs --> 11 <div class="breadcrumbs"> 12 <?php if (tpl_getConf("dokuwikibreadcrumbs_enable")) { ?> 13 <?php tpl_breadcrumbs(); ?> 14 <?php tpl_youarehere(); ?> 15 <?php } else { ?> 16 <?php if ($ACT == "show" || $ACT == "search") { ?> 17 <span class="home"><a href="<?php echo tpl_getConf('startpage'); ?>"><?php echo tpl_getlang("breadcrumbs_docs"); ?></a></span> 18 <?php } else { ?> 19 <span class="admin"><a href="<?php echo wl($ID,array('do'=>'admin'),true,'&'); ?>"><?php echo tpl_getlang("breadcrumbs_admin"); ?></a></span> 20 <?php } ?> 21 » <bdi><?php tpl_pagetitle(); ?></bdi> 22 <?php } ?> 23 </div> 24 25 <!-- Edit this page --> 26 <?php if ($ACT == "show" && isset($INFO["editable"])) { ?> 27 <a style="margin-left:auto" href="<?php echo wl($ID,array('do'=>'edit'),true,'&'); ?>"> 28 <i class="fas fa-pencil-alt"></i> 29 <span> <?php echo tpl_getlang("pageheader_editthispage"); ?></span> 30 </a> 31 <?php } ?> 32 </div> 33 34 <?php tpl_includeFile('pageheader.html') ?> 35 36 <hr> 37</div> 38