{% extends 'base.html' %} {% block title %}Posts{% endblock %} {% block page_title %}Posts{% endblock %} {% block topbar_actions %} New Post {% endblock %} {% block content %}
{{ posts|length }} post(s)
{% if posts %}
{% for post in posts %}
{% if post.title %} {{ post.title }} {% endif %} {{ post.status }} {% if post.media_type and post.media_type != 'none' %} {{ post.media_type }} {% endif %}
{{ post.created_at.strftime('%b %d, %Y') }}
{{ post.content }}
{% if post.schedules %} {% endif %}
Edit
{% endfor %}
{% else %}

No posts yet

Create your first post and schedule it to publish on your Facebook Pages.

Create Your First Post
{% endif %} {% endblock %}