4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-13 12:46:41 +00:00
AzuraCast/templates/stations/sidebar.phtml
2021-09-15 07:23:33 -05:00

22 lines
594 B
PHTML

<?php
/**
* @var \App\Entity\Station $station
* @var \App\Assets $assets
*/
$assets->addInlineJs($this->fetch('stations/sidebar.js', ['station' => $station]), 95);
?>
<div class="navdrawer-header">
<a class="navbar-brand px-0" href="<?=$router->fromHere('stations:profile:index') ?>">
<div><?=$this->e($station->getName()) ?></div>
<div class="xs" id="station-time" title="<?=$this->e(__('Station Time')) ?>">
<?=date('H:i:s T') ?>
</div>
</a>
</div>
<?php
echo $this->fetch('partials/sidebar_menu', ['menu' => $menu, 'active' => $active]);
?>