{% extends "admin/base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Dashboard

{{ post_count }}
Posts
{{ page_count }}
Pages
{{ published_count }}
Published

Recent Posts

New Post
{% if recent_posts | length > 0 %} {% for post in recent_posts %} {% endfor %}
Title Status Created
{{ post.title }} {{ post.status }} {{ post.created_at }}
{% else %}

No posts yet. Create your first post

{% endif %}
{% endblock %}