dual-collection.html 472 B

123456789101112131415161718192021222324
  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">
  8. <div class="w-50" style="float: left">
  9. {% include "partial/tweets-timeline.html" %}
  10. </div>
  11. <div class="w-50" style="float: left">
  12. {% with tweets=tweets2, skip_plot=True %}
  13. {% include "partial/tweets-timeline.html" %}
  14. {% endwith %}
  15. </div>
  16. </div>
  17. {% endblock %}