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> </figure>
<div class="media-content"> <div class="media-content">
<p> <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> <small>
<a href="{url_user($item->author->uniqueId)}">@{$item->author->uniqueId}</a> <a href="{url_user($item->author->uniqueId)}">@{$item->author->uniqueId}</a>
</small> </small>

View file

@ -12,9 +12,9 @@
</figure> </figure>
<p class="title"> <p class="title">
{if $info->detail->verified} {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} {else}
{$info->detail->uniqueId} {$info->detail->nickname}
{/if} {/if}
</p> </p>
<p class="subtitle">{include '../components/rss.latte'}</p> <p class="subtitle">{include '../components/rss.latte'}</p>