mirror of
https://github.com/Karaka-Management/oms-News.git
synced 2026-01-28 08:08:41 +00:00
29 lines
644 B
PHP
29 lines
644 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.2
|
|
*
|
|
* @package TBD
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://website.orange-management.de
|
|
*/
|
|
/**
|
|
* @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">
|
|
<header><h1><?= $this->printHtml($news->getTitle()); ?></h1></header>
|
|
<div class="inner">
|
|
<article><?= $news->getContent(); ?></article>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|