diff options
| author | Syndamia <kamen@syndamia.com> | 2025-02-02 10:16:39 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2025-02-02 10:18:10 +0200 |
| commit | ee1add20e2861e95de0b6b3b621f0a8e277f2a02 (patch) | |
| tree | 181a3532501db013263c4456578b62d5442cc6c7 /views/profile | |
| parent | a6f29034d18d5a5ce48d879845cce3544b0f8a3c (diff) | |
| download | nowayforward_human-ee1add20e2861e95de0b6b3b621f0a8e277f2a02.tar nowayforward_human-ee1add20e2861e95de0b6b3b621f0a8e277f2a02.tar.gz nowayforward_human-ee1add20e2861e95de0b6b3b621f0a8e277f2a02.zip | |
feat: Proper list page layout and export user logo logic to class
Diffstat (limited to 'views/profile')
| -rw-r--r-- | views/profile/index.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/views/profile/index.php b/views/profile/index.php index 4ade4e7..1462e26 100644 --- a/views/profile/index.php +++ b/views/profile/index.php @@ -8,8 +8,7 @@ <?php if ($user !== null): ?> <section> - <!-- https://tabler.io/icons --> - <svg class="user-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" ><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 2a5 5 0 1 1 -5 5l.005 -.217a5 5 0 0 1 4.995 -4.783z" /><path d="M14 14a5 5 0 0 1 5 5v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1a5 5 0 0 1 5 -5h4z" /></svg> + <span class="user-icon"><?php $user->icon(); ?></span> <h1 class="username"><?= $user->Username ?></h1> </section> |
