{% extends "base.html" %} {% block title %}Admin Dashboard - Your Name{% endblock %} {% block content %}

Admin Dashboard

New Post Logout
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
Blog Posts ({{ posts|length }})
{% if posts %}
{% for post in posts %} {% endfor %}
Title Category Date Actions
{{ post.title }}
{{ post.excerpt[:100] }}...
{{ post.category }} {{ post.date }}
View Edit
{% else %}

No blog posts yet.

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