xref: /template/readthedokus/tpl_parts/tpl_pageheader.html (revision 6d6828ad930cb06608e9a535b598a98477a99245)
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 ($ACT == "show" || $ACT == "search") { ?>
13				<span class="home"><a href="/">Docs</a></span>
14			<?php } else { ?>
15				<span class="admin"><a href="<?php echo wl($ID,array('do'=>'admin'),true,'&'); ?>">Admin</a></span>
16			<?php } ?>
17
18			 »  <bdi><?php tpl_pagetitle(); ?></bdi>
19		</div>
20
21		<!-- Edit this page -->
22		<?php if ($ACT == "show" && $INFO["userinfo"]) { ?>
23			<a style="margin-left:auto" href="<?php echo wl($ID,array('do'=>'edit'),true,'&'); ?>">
24				<i class="fas fa-pencil-alt"></i>
25				<span> Edit this page</span>
26			</a>
27		<?php } ?>
28	</div>
29
30	<?php tpl_includeFile('pageheader.html') ?>
31
32	<hr>
33</div>
34