123456789101112131415161718192021222324 |
- {% extends "base.html" %}
- {% block head %}
- <title>Tweet Library: {{ user.id }}</title>
- {% endblock %}
- {% block content %}
- {% include "partial/page-nav.html" %}
-
- <div class="w-100">
- <div class="w-50" style="float: left">
- {% include "partial/tweets-timeline.html" %}
- </div>
- <div class="w-50" style="float: left">
- {% with tweets=tweets2, skip_plot=True %}
- {% include "partial/tweets-timeline.html" %}
- {% endwith %}
- </div>
- </div>
- {% endblock %}
|