proxitok/components/following_tags.latte
2022-01-25 14:08:31 +01:00

10 lines
161 B
Plaintext

<div class="tags">
{if !empty($following)}
{foreach $following as $user}
<span class="tag">{$user}</span>
{/foreach}
{else}
<p>None</p>
{/if}
</div>