tweet-collection.html 234 B

12345678910111213141516
  1. {% extends "base.html" %}
  2. {% block head %}
  3. <title>Tweet Library: {{ user.id }}</title>
  4. {% endblock %}
  5. {% block content %}
  6. {% include "partial/page-nav.html" %}
  7. {% include "partial/tweets-timeline.html" %}
  8. {% endblock %}