26 lines
492 B
PHTML
26 lines
492 B
PHTML
<?php
|
|
|
|
/**
|
|
* @var array|null $user
|
|
* @var string $first_name
|
|
*/
|
|
|
|
if (!empty($notFound)) {
|
|
require __DIR__ . '/../error/not_found(error).phtml';
|
|
return;
|
|
}
|
|
|
|
?>
|
|
<div class="app-breadcrumb">
|
|
<a href="/logout">Login</a><i class="bi bi-chevron-right"></i><?php e(t('Home')); ?>
|
|
</div>
|
|
<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>
|