tweet-thread.html 394 B

123456789101112131415161718192021
  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. <div class="w-100" style="border: 1px solid silver; background-color: white">
  8. {% with thread_item=root, skip_embed_replies=True %}
  9. {% include "partial/tweet-thread-item.html" %}
  10. {% endwith %}
  11. </div>
  12. {% endblock %}