{%- extends "base.html" -%} {%- import "macros/icons.html" as icons -%} {%- block title -%}{{ user.name }} — Dashboard{%- endblock -%} {%- block content -%}
Total activity: {{ total }}
No posts yet. Create one?
{% else %}| Title | Status | Published | Actions |
|---|---|---|---|
| {{ post.title }} | {% match post.status %} {% when PostStatus::Published %} Published {% when PostStatus::Draft %} Draft {% when PostStatus::Archived %} Archived {% endmatch %} | {% match post.published_at %} {% when Some with (date) %} {% when None %} — {% endmatch %} | {% call icons::edit() %} {% call icons::delete() %} |