<%- include('../../partials/adminTopbar', {
  pageTitle: 'New Page',
  pageSubtitle: 'Define the URL path and initial content',
  topbarActions: `<a href="/admin/pages" class="btn-ghost text-xs">← Back to pages</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', page: page, parentOptions: typeof parentOptions !== 'undefined' ? parentOptions : [] }) %>
</main>
