tweet-collection.html 467 B

123456789101112131415161718192021222324252627
  1. {% extends "base.html" %}
  2. {% block head %}
  3. <title>Tweet Library: {{ user.id }}</title>
  4. {% endblock %}
  5. {% block content %}
  6. <div class="w-100" style="height: 40px">
  7. <p class="w-100" style="text-align: right">
  8. {% if page_nav %}
  9. {% for nav_item in page_nav|sort(attribute='order') %}
  10. | <a href="{{ nav_item.href }}">{{ nav_item.label }}</a>
  11. {% endfor %}
  12. {% endif %}
  13. </p>
  14. </div>
  15. {% include "partial/tweets-timeline.html" %}
  16. {% endblock %}