<%- include('../../partials/adminTopbar', {
  pageTitle: 'Edit Post',
  pageSubtitle: post.name || post.title,
  topbarActions: `<a href="/blog/${post.slug}" target="_blank" rel="noopener" class="btn-ghost text-xs">View live</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: 'edit', post: post, categories: categories }) %>
</main>
