Advertisement
hsianghui

Lab 4 (main.ejs)

Jan 1st, 2025 (edited)
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <%- include("head", {title: 'Simple CRM'}) %>
  4.  
  5.   <body class="hold-transition sidebar-mini layout-fixed">
  6.     <div class="wrapper">
  7.       <!-- prettier-ignore -->
  8.       <%- include("navbar") %>
  9.       <%- include("sidebar") %>
  10.  
  11.       <div class="content-wrapper">
  12.         <!-- Content Header (Page header) -->
  13.         <div class="content-header">
  14.           <div class="container-fluid">
  15.             <div class="row mb-2">
  16.               <div class="col-sm-6">
  17.                 <h1 class="m-0 text-dark">Welcome to Simple CRM</h1>
  18.               </div>
  19.               <!-- /.col -->
  20.               <div class="col-sm-6">
  21.                 <ol class="breadcrumb float-sm-right">
  22.                   <li class="breadcrumb-item active">
  23.                     <a href="/">Home</a>
  24.                   </li>
  25.                 </ol>
  26.               </div>
  27.               <!-- /.col -->
  28.             </div>
  29.             <!-- /.row -->
  30.           </div>
  31.           <!-- /.container-fluid -->
  32.         </div>
  33.         <!-- /.content-header -->
  34.       </div>
  35.  
  36.       <%- include("footer") %>
  37.     </div>
  38.  
  39.     <%- include("script") %>
  40.   </body>
  41. </html>
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement