2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2021-02-10 16:20:01 +00:00
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= esc($person->full_name) ?>
|
2021-02-10 16:20:01 +00:00
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('headerRight') ?>
|
2024-12-17 15:06:08 +00:00
|
|
|
<?php // @icon("pencil-fill")?>
|
2024-05-09 17:55:41 +00:00
|
|
|
<x-Button uri="<?= route_to('person-edit', $person->id) ?>" variant="secondary" iconLeft="pencil-fill"><?= lang('Person.edit') ?></x-Button>
|
2021-02-10 16:20:01 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2021-11-05 14:36:34 +00:00
|
|
|
<div class="flex flex-wrap gap-2">
|
|
|
|
<img
|
2023-04-13 11:45:03 +00:00
|
|
|
src="<?= get_avatar_url($person, 'medium') ?>"
|
2022-03-04 14:33:48 +00:00
|
|
|
alt="<?= esc($person->full_name) ?>"
|
2021-11-23 11:54:34 +00:00
|
|
|
class="object-cover w-full max-w-xs rounded aspect-square"
|
2022-01-21 18:07:43 +00:00
|
|
|
loading="lazy"
|
2021-11-05 14:36:34 +00:00
|
|
|
/>
|
|
|
|
<div class="flex flex-col">
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= esc($person->full_name) ?>
|
|
|
|
<a class="font-semibold no-underline text-accent-base hover:underline" href="<?= esc($person->information_url) ?>"><?= esc($person->information_url) ?></a>
|
2021-02-10 16:20:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|