{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
Export as XML Import from XML

Pages

Add New Page
{% for page in pages %} {% endfor %}
Title Slug Status Actions
{{ page.title }} {% if page.get('status') == 'draft' %} Draft {% endif %} {{ page.slug }} {{ page.get('status', 'draft').title() }}

Posts

Add New Post
{% for post in posts %} {% endfor %}
Title Author Category Status Actions
{{ post.title }} {% if post.get('status') == 'draft' %} Draft {% endif %} {{ post.get('author', 'Admin') }} {% if post.get('category') is mapping %}{{ post.get('category').name }}{% else %}{{ post.get('category', 'Uncategorized') }}{% endif %} {{ post.get('status', 'draft').title() }}