Files
breadcrumb-the-shire/pages/admin/index(default).phtml

26 lines
433 B
PHTML
Raw Normal View History

2026-02-04 23:31:53 +01:00
<?php
/**
* @var array|null $user
* @var string $first_name
*/
?>
2026-02-11 19:28:12 +01:00
<?php
$breadcrumbs = [
['label' => t('Login'), 'path' => 'logout'],
['label' => t('Home')],
];
require templatePath('partials/app-breadcrumb.phtml');
?>
2026-02-04 23:31:53 +01:00
<div class="app-dashboard-titlebar">
<h1><?php e(t('Welcome back')); ?> <?php e($first_name )?></h1>
<div class="app-dashboard-titlebar-actions">
</div>
</div>
<div class="app-dashboard">
</div>