<%- include('../../partials/adminTopbar', {
  pageTitle: 'New Post',
  pageSubtitle: 'Create a new blog article',
  topbarActions: `<a href="/admin/blog" class="btn-ghost text-xs">← Back to posts</a>`
}) %>

<main class="admin-main flex-1 overflow-y-auto overflow-x-hidden">
  <% if (typeof flash !== 'undefined' && flash) { %>
  <div class="admin-flash admin-flash-<%= flashType === 'error' ? 'error' : 'success' %> mb-4"><%= flash %></div>
  <% } %>
  <%- include('_form', { mode: 'create', post: null, categories: categories }) %>
</main>
