2021-04-20 23:21:44 +02:00
|
|
|
<section class="page mt-4 mb-4">
|
2021-04-13 20:28:51 +02:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2021-04-20 23:21:44 +02:00
|
|
|
<div class="col-lg-6 mx-auto">
|
2021-04-13 20:28:51 +02:00
|
|
|
<!-- Load Bludit Plugins: Page Begin -->
|
|
|
|
<?php execPluginsByHook('pageBegin'); ?>
|
|
|
|
|
2021-04-20 23:21:44 +02:00
|
|
|
<!-- Page information -->
|
|
|
|
<div class="page-information form-text">
|
|
|
|
<span><?php echo $page->date() ?></span>
|
|
|
|
<span class="ps-3"><?php echo $page->readingTime().' '.$L->g('read') ?></span>
|
|
|
|
</div>
|
|
|
|
|
2021-04-13 20:28:51 +02:00
|
|
|
<!-- Page title -->
|
|
|
|
<h1 class="title"><?php echo $page->title(); ?></h1>
|
|
|
|
|
|
|
|
<!-- Page description -->
|
|
|
|
<?php if ($page->description()): ?>
|
2021-04-20 23:21:44 +02:00
|
|
|
<p class="italic mt-1 mb-3 color-light"><?php echo $page->description(); ?></p>
|
2021-04-13 20:28:51 +02:00
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
<!-- Page content -->
|
|
|
|
<div class="page-content">
|
|
|
|
<?php echo $page->content(); ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Load Bludit Plugins: Page End -->
|
|
|
|
<?php execPluginsByHook('pageEnd'); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-20 23:21:44 +02:00
|
|
|
</section>
|