mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-06 00:06:51 +02:00
16 lines
295 B
PHP
16 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() ?>
|