threads/templates/tag-pills.html
Ayo Ayco 1354a8bab4 style: modularized stylesheets for button, card, pills
- better looking directional buttons
- consistent colors
2025-01-19 16:37:35 +01:00

13 lines
No EOL
393 B
HTML

<div class="featured-tags">
<div>
<strong><small>Featured tags</small></strong>
</div>
{% for tag in tags %}
<a class="hashtag pill" href="{{url_for('threads.tag', id=tag.name) }}">
{{ tag.name }}
{% if tag.statuses_count is defined %}
<span class="pill-label">{{ tag.statuses_count }}</span>
{% endif %}
</a>
{% endfor %}
</div>