mirror of
https://github.com/Karaka-Management/oms-News.git
synced 2026-02-03 02:38:40 +00:00
31 lines
630 B
PHP
31 lines
630 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\News
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @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>
|
|
<h1><?= $this->printHtml($news->getTitle()); ?></h1>
|
|
<?= $news->getContent(); ?>
|
|
</article>
|
|
</section>
|
|
</div>
|
|
</div>
|