summaryrefslogtreecommitdiffstats
path: root/templates/activities/explore_tag.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/activities/explore_tag.html')
-rw-r--r--templates/activities/explore_tag.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/activities/explore_tag.html b/templates/activities/explore_tag.html
new file mode 100644
index 0000000..b2fd79d
--- /dev/null
+++ b/templates/activities/explore_tag.html
@@ -0,0 +1,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 %}