xref: /template/readthedokus/tpl_parts/tpl_pageheader.html (revision e690c96be4c4860bfdeaa8f9e064ac7215104317)
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'); ?>">Docs</a></span>
18				<?php } else { ?>
19					<span class="admin"><a href="<?php echo wl($ID,array('do'=>'admin'),true,'&'); ?>">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" && $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> Edit this page</span>
30			</a>
31		<?php } ?>
32	</div>
33
34	<?php tpl_includeFile('pageheader.html') ?>
35
36	<hr>
37</div>
38