Advertisement
hsianghui

head.ejs

Dec 31st, 2024 (edited)
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.26 KB | None | 0 0
  1. <head>
  2.   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  3.   <title><%= title %></title>
  4.  
  5.   <meta name="viewport" content="width=device-width, initial-scale=1" />
  6.  
  7.   <!-- Font Awesome -->
  8.   <link rel="stylesheet" href="/plugins/fontawesome-free/css/all.min.css" />
  9.  
  10.   <!-- Daterange picker -->
  11.   <link rel="stylesheet" href="/plugins/daterangepicker/daterangepicker.css" />
  12.  
  13.   <!-- iCheck for checkboxes and radio inputs -->
  14.   <link
  15.    rel="stylesheet"
  16.    href="/plugins/icheck-bootstrap/icheck-bootstrap.min.css"
  17.  />
  18.  
  19.   <!-- Tempusdominus Bootstrap 4 (Date Picker) -->
  20.   <link
  21.    rel="stylesheet"
  22.    href="/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css"
  23.  />
  24.  
  25.   <!-- DataTables -->
  26.   <link
  27.    rel="stylesheet"
  28.    href="/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css"
  29.  />
  30.   <link
  31.    rel="stylesheet"
  32.    href="/plugins/datatables-responsive/css/responsive.bootstrap4.min.css"
  33.  />
  34.  
  35.   <!-- Theme style (comes with Bootstrap) -->
  36.   <link rel="stylesheet" href="/dist/css/adminlte.min.css" />
  37.  
  38.   <!-- Google Font: Source Sans Pro -->
  39.   <link
  40.    rel="stylesheet"
  41.    href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&amp;display=fallback"
  42.  />
  43. </head>
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement