fix(Utils/tags.php): tag sizing + spacing

This commit is contained in:
Cory Dransfeldt 2025-06-16 20:23:58 -07:00
parent 555ba74bf6
commit 82ef352f68
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View file

@ -7,11 +7,11 @@ if (! function_exists('renderTags')) {
return;
}
echo '<div class="tags">';
echo '<div class="tags tags-small">';
foreach ($tags as $tag) {
$slug = strtolower(trim($tag));
echo '<a href="/tags/'.rawurlencode($slug).'">#'.htmlspecialchars($slug).'</a>';
echo ' <a href="/tags/'.rawurlencode($slug).'">#'.htmlspecialchars($slug).'</a>';
}
echo '</div>';