{% extends "base.html" %} {% block title %}#{{ hashtag.display_name }} Timeline{% endblock %} {% block content %} {{ hashtag.display_name }} {% for post in page_obj %} {% include "activities/_post.html" %} {% empty %} No posts yet. {% endfor %} {% if page_obj.has_previous %} Previous Page {% endif %} {% if page_obj.has_next %} Next Page {% endif %} {% endblock %}