mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-11 07:58:42 +00:00
24 lines
557 B
PHP
24 lines
557 B
PHP
<?php
|
|
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package Web\Backend
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use phpOMS\Uri\UriFactory;
|
|
?>
|
|
<header>
|
|
<a id="logo" href="<?= UriFactory::build('{/prefix}'); ?>">
|
|
<span><img alt="<?= $this->getHtml('Logo', '0', '0'); ?>" src="Applications/Backend/img/logo.png" width="40px"></span>
|
|
<span id="logo-name">Jingga</span>
|
|
</a>
|
|
<?php include __DIR__ . '/nav-top.tpl.php'; ?>
|
|
</header>
|