123456789101112131415161718192021 |
- {% extends "base.html" %}
- {% block head %}
- <title>Tweet Library: {{ user.id }}</title>
- {% endblock %}
- {% block content %}
- {% include "partial/page-nav.html" %}
-
- <div class="w-100" style="border: 1px solid silver; background-color: white">
-
- {% with thread_item=root, skip_embed_replies=True %}
- {% include "partial/tweet-thread-item.html" %}
- {% endwith %}
-
- </div>
-
- {% endblock %}
|