mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
17 lines
295 B
PHP
17 lines
295 B
PHP
<?= $this->extend('_layout') ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= lang('User.view', [
|
|
'username' => esc($user->username),
|
|
]) ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<?= view('_partials/_user_info.php', [
|
|
'user' => $user,
|
|
]) ?>
|
|
|
|
<?= $this->endSection() ?>
|