summaryrefslogtreecommitdiffstats
path: root/templates/activities/explore_tag.html
blob: b2fd79d1c1d12f7f14904ea2601ef9ac03985e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}

{% block title %}#{{ hashtag.display_name }} Timeline{% endblock %}

{% block content %}
<div class="timeline-name">Explore Trending Tags</div>

<section class="icon-menu">
    {% for hashtag in page_obj %}
        {% include "activities/_hashtag.html" %}
    {% empty %}
        No tags are trending yet.
    {% endfor %}

</section>
{% endblock %}