mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-10 16:25:47 +00:00
32 lines
933 B
PHP
32 lines
933 B
PHP
<?= $this->extend('_layout') ?>
|
|
|
|
<?= $this->section('title') ?>
|
|
<?= $person->full_name ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= $person->full_name ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('headerRight') ?>
|
|
<Button uri="<?= route_to('person-edit', $person->id) ?>" variant="secondary" iconLeft="edit"><?= lang('Person.edit') ?></Button>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<div class="flex flex-wrap gap-2">
|
|
<img
|
|
src="<?= $person->avatar->medium_url ?>"
|
|
alt="<?= $person->full_name ?>"
|
|
class="object-cover w-full max-w-xs rounded aspect-square"
|
|
loading="lazy"
|
|
/>
|
|
<div class="flex flex-col">
|
|
<?= $person->full_name ?>
|
|
<a class="font-semibold no-underline text-accent-base hover:underline" href="<?= $person->information_url ?>"><?= $person->information_url ?></a>
|
|
</div>
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|