Starter Template

Use this page as a starting point for creating new pages. Simply copy this file, rename it, and start building your content.

Page Structure

Each page includes the following layout components:

  • Header - Top navigation bar with search, notifications, and user profile dropdown
  • Sidebar - Left navigation with collapsible menu items and multi-level support
  • Main Content - This area where your page content goes
  • Footer - Copyright information and links
Creating a New Page
  1. Copy this blank.html file and rename it (e.g., my-page.html)
  2. Update the <title> tag in the <head> section
  3. Modify the page header title and breadcrumb navigation
  4. Replace this card content with your own content
  5. Add a link to your new page in the sidebar navigation
Adding to Sidebar Navigation

To add your new page to the sidebar, locate the navigation section in the HTML and add a new menu item:

<li class="nav-item">
  <a class="nav-link" href="my-page.html">
    <i class="bi bi-file-earmark"></i>
    <span>My New Page</span>
  </a>
</li>
Available CSS Classes
Class Description
.page-header Container for page title and breadcrumb
.page-title Main page heading style
.section Content section with consistent spacing
.card Bootstrap card component for content panels
.dashboard-grid Responsive grid layout for dashboard widgets
Tips
  • Use Bootstrap 5 utility classes for spacing, typography, and layout
  • Check other pages in this template for common patterns and components
  • The template supports both light and dark modes automatically via CSS variables
  • Icons are provided by Bootstrap Icons - browse available icons at icons.getbootstrap.com