Advertisement
hsianghui

main.ejs (without breadcrumbs)

Jan 1st, 2025 (edited)
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.45 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.         <h1>Welcome to Simple CRM</h1>
  13.       </div>
  14.  
  15.       <%- include("footer") %>
  16.     </div>
  17.  
  18.     <%- include("script") %>
  19.   </body>
  20. </html>
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement