12345678910111213141516171819202122 |
- {% extends "base.html" %}
- {% block head %}
- <title>Tweet Library: {{ user.id }}</title>
- {% endblock %}
- {% block content %}
- <div id="search" class="center z-0 w-50" style="position: sticky; top: 0; background-color: white; padding: 4px 0">
- <center>
- <form method="GET">
- <input type="text" name="q" value="{{ request.args.q }}" placeholder="Search query...">
- <button type="submit">Search</button>
- </form>
- </center>
- </div>
-
- {% include "partial/tweets-timeline.html" %}
-
- {% endblock %}
|