daux.io/templates/content.php

44 lines
1.5 KiB
PHP
Raw Normal View History

2015-04-23 10:24:50 +02:00
<?php $this->layout('theme::layout/05_page') ?>
2016-05-23 20:09:15 +02:00
<article class="Page">
2016-07-29 22:44:35 +02:00
<div class="Page__header">
<h1><?= $page['breadcrumbs'] ? $this->get_breadcrumb_title($page, $base_page) : $page['title'] ?></h1>
<?php if ($config->getHTML()->showDateModified()) { ?>
<span class="ModifiedDate">
<?= Todaymade\Daux\FormatDate::format($config, $page['modified_time']) ?>
</span>
<?php } ?>
<?php
$edit_on = $config->getHTML()->getEditOn();
if ($edit_on) { ?>
<span class="EditOn">
<a href="<?= $edit_on['basepath'] ?>/<?= $page['relative_path'] ?>" target="_blank">
<?= str_replace(":name:", $edit_on['name'], $this->translate("Edit_on")) ?>
</a>
</span>
<?php } ?>
</div>
2016-07-29 22:44:35 +02:00
2016-05-23 20:09:15 +02:00
<div class="s-content">
<?= $page['content']; ?>
</div>
<?php
$hasPrevNext = (!empty($page['prev']) || !empty($page['next']));
if ($hasPrevNext && $config->getHTML()->showPreviousNextLinks()) {
2020-04-22 21:55:53 +02:00
?>
<nav>
2016-05-23 20:09:15 +02:00
<ul class="Pager">
2016-07-27 21:32:51 +02:00
<?php if (!empty($page['prev'])) {
2020-04-22 21:55:53 +02:00
?><li class=Pager--prev><a href="<?= $base_url . $page['prev']->getUrl() ?>"><?= $this->translate("Link_previous") ?></a></li><?php
} ?>
2016-07-27 21:32:51 +02:00
<?php if (!empty($page['next'])) {
2020-04-22 21:55:53 +02:00
?><li class=Pager--next><a href="<?= $base_url . $page['next']->getUrl() ?>"><?= $this->translate("Link_next") ?></a></li><?php
} ?>
</ul>
</nav>
2016-07-27 21:32:51 +02:00
<?php
2020-04-22 21:55:53 +02:00
} ?>
2015-04-23 10:24:50 +02:00
</article>