small changes to UI

This commit is contained in:
Pablo Ferreiro 2023-07-04 16:39:53 +02:00
parent 34623c8e43
commit 15fdd41cad
No known key found for this signature in database
GPG key ID: 41FBCE65B779FA24
2 changed files with 9 additions and 3 deletions

View file

@ -8,7 +8,13 @@
</figure>
<div class="media-content">
<p>
<strong>{$item->author->nickname}</strong>
<strong>
{if $item->author->verified}
{include '../icon.latte', icon: 'check-o', text: $item->author->nickname}
{else}
{$item->author->nickname}
{/if}
</strong>
<small>
<a href="{url_user($item->author->uniqueId)}">@{$item->author->uniqueId}</a>
</small>

View file

@ -12,9 +12,9 @@
</figure>
<p class="title">
{if $info->detail->verified}
{include '../components/icon.latte', icon: 'check-o', text: $info->detail->uniqueId}
{include '../components/icon.latte', icon: 'check-o', text: $info->detail->nickname}
{else}
{$info->detail->uniqueId}
{$info->detail->nickname}
{/if}
</p>
<p class="subtitle">{include '../components/rss.latte'}</p>