{% extends "feeds/base.html" %} {% block title %}My posts - feedwell{% endblock %} {% block content %}

My posts

Just your own posts, synced separately from the connections feed on the home page.

{% if user.is_authenticated and has_synced_account %}
{% csrf_token %}
{% endif %} {% if posts %} {% include "feeds/_post_list.html" %} {% elif user.is_authenticated %} {% if has_synced_account %}

No posts yet.

{% else %}

No posts yet. Connect a Mastodon or Bluesky account on the Connections page to get started — those are the only platforms this feed can sync from right now.

{% endif %} {% else %}

Log in to see your posts.

{% endif %} {% endblock %}