{% from "partials/header.html" import header with context %} {{ app_name }} v{{ app_version }} - Topical Tags {{ header('topical_tags') }}

Topical Tags

Mark hashtags as topical for a specific day — so consumers can request topical content via the curated queue.

{% if tags %}
{% for tag in tags %}

{{ tag.hashtag }}

{% if tag.topical_day_of_week_name %} {{ tag.topical_day_of_week_name }}s {% endif %} {% if tag.topical_month_day %} {{ tag.topical_month_day }} {% endif %} {% if not tag.topical_day_of_week_name and not tag.topical_month_day %} No day configured {% endif %}

Created {{ tag.created_at }}

{% endfor %}
{% else %}

No topical tag rules configured yet.

Topical tags let you mark a hashtag as relevant for a specific day (e.g. #caturday on Saturdays). Consumers can then request topical posts via the curated queue. You can also configure stream-level topical days on the Streams page.

{% endif %}