mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
23 lines
424 B
PHP
23 lines
424 B
PHP
<?= $this->extend('_layout') ?>
|
|
|
|
<?= $this->section('title') ?>
|
|
<?= lang('User.view', [
|
|
'username' => esc($user->username),
|
|
]) ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= lang('User.view', [
|
|
'username' => esc($user->username),
|
|
]) ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<?= view('_partials/_user_info.php', [
|
|
'user' => $user,
|
|
]) ?>
|
|
|
|
<?= $this->endSection() ?>
|