castopod/themes/cp_admin/user/view.php
Yassine Doghri 7a276764e6 feat(themes): add ViewThemes library to set views in root themes folder
app, admin, install and authentication views are now located in root themes/ folder
2021-12-29 11:54:52 +00:00

13 lines
272 B
PHP

<?= $this->extend('_layout') ?>
<?= $this->section('title') ?>
<?= lang('User.view', ['username' => $user->username]) ?>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<?= view('_partials/_user_info.php', ['user' => $user]) ?>
<?= $this->endSection() ?>