12345678910111213141516 |
- <h2>Accounts</h2>
- <ul>
- {% for k, v in session.items() %}
- {% if k.startswith('twitter:') %}
- <li><a href="{{ url_for('twitter_v2_facade.get_timeline_home_html', me=k) }}">{{ k }}</a>
- {% endif %}
- {% if mastodon_enabled and k.startswith('mastodon:') %}
- <li><a href="{{ url_for('mastodon_facade.get_timeline_home_html', me=k) }}">{{ k }}</a>
- {% endif %}
- {% endfor %}
- {% if archive_enabled %}
- <li><a href="{{ url_for('twitter_archive_facade.get_profile_html', user_id=0) }}">Twitter archive</a>
- {% endif %}
-
- </ul>
|