ASP Classic blog framework - BrainOrdure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 line
1.4KB

  1. <div class="d-flex align-items-center justify-content-between mb-4">
  2. <div>
  3. <h1 class="h3 mb-1">Admin Dashboard</h1>
  4. <p class="text-muted mb-0">Manage your blog content.</p>
  5. </div>
  6. </div>
  7. <div class="row gy-3">
  8. <div class="col-md-6">
  9. <a class="card shadow-sm text-decoration-none h-100" href="<%= AdminUrl() %>/posts">
  10. <div class="card-body">
  11. <h2 class="h5 mb-1">Posts</h2>
  12. <p class="text-muted mb-0">Create, publish, and manage blog posts.</p>
  13. </div>
  14. </a>
  15. </div>
  16. <div class="col-md-6">
  17. <a class="card shadow-sm text-decoration-none h-100" href="<%= AdminUrl() %>/categories">
  18. <div class="card-body">
  19. <h2 class="h5 mb-1">Categories</h2>
  20. <p class="text-muted mb-0">Organize posts into categories.</p>
  21. </div>
  22. </a>
  23. </div>
  24. <div class="col-md-6">
  25. <a class="card shadow-sm text-decoration-none h-100" href="<%= AdminUrl() %>/ai-prompt">
  26. <div class="card-body">
  27. <h2 class="h5 mb-1">AI Prompt</h2>
  28. <p class="text-muted mb-0">Edit the prompt used to generate AI post content.</p>
  29. </div>
  30. </a>
  31. </div>
  32. <div class="col-md-6">
  33. <a class="card shadow-sm text-decoration-none h-100" href="<%= AdminCommentsUrl() %>">
  34. <div class="card-body">
  35. <h2 class="h5 mb-1">Comments</h2>
  36. <p class="text-muted mb-0">Approve, unapprove, or delete reader comments.</p>
  37. </div>
  38. </a>
  39. </div>
  40. </div>

Powered by TurnKey Linux.