{% extends "base.html" %} {% block title %}Posts — ContentBot{% endblock %} {% block page_title %}Recent Posts{% endblock %} {% block content %}
{% for s in sites %} {{ s.name }} {% endfor %}
{% if not selected %}

Select a website above to view its recent posts.

{% elif posts %}
{{ selected.name }} — Last 30 Posts
{% for p in posts %} {% endfor %}
TitleDateStatusLink
{{ p.title | striptags }} {{ p.date }} {% if p.status == 'publish' %} published {% else %} {{ p.status }} {% endif %} View →
{% else %}

No posts found or could not connect to WordPress API.

{% endif %} {% endblock %}