oms-News/Theme/Backend/news-single.tpl.php
2019-07-08 19:51:27 +02:00

26 lines
526 B
PHP

<?php declare(strict_types=1);
/**
* Orange Management
*
* PHP Version 7.2
*
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
/**
* @var \phpOMS\Views\View $this
*/
$news = $this->getData('news');
echo $this->getData('nav')->render(); ?>
<div class="row">
<div class="col-xs-12">
<section class="box wf-100">
<article><?= $news->getContent(); ?></article>
</section>
</div>
</div>