1234567891011121314151617181920212223242526 |
- <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 %}
- {% if youtube_enabled and k.startswith('youtube:') %}
- <li><a href="{{ url_for('youtube_facade.get_latest_html', me=k) }}">{{ k }}</a>
- {% endif %}
- {% if messages_enabled and k.startswith('messages:') %}
- <li><a href="{{ url_for('messages_facade.get_latest2_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 %}
- {% if feeds_enabled %}
- <li><a href="{{ url_for('feeds_facade.get_latest_html', me=None) }}">Feeds</a>
- {% endif %}
-
-
- </ul>
|