* updated for bs.v5.3.2 updated _bootstrap-variables.scss for bs.v5.3.2 updated _bootstrap-variables.scss for bs.v5.3.1 * minor fix in _bootstrap-variables.scss
38 lines
1.8 KiB
Plaintext
38 lines
1.8 KiB
Plaintext
---
|
|
const { title, path, isRtl } = Astro.props;
|
|
const cssPath = isRtl ? ".rtl" : "";
|
|
---
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>{title}</title>
|
|
<!--begin::Primary Meta Tags-->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="title" content={title} />
|
|
<meta name="author" content="ColorlibHQ" />
|
|
<meta
|
|
name="description"
|
|
content="AdminLTE is a Free Bootstrap 5 Admin Dashboard, 30 example pages using Vanilla JS."
|
|
/>
|
|
<meta
|
|
name="keywords"
|
|
content="bootstrap 5, bootstrap, bootstrap 5 admin dashboard, bootstrap 5 dashboard, bootstrap 5 charts, bootstrap 5 calendar, bootstrap 5 datepicker, bootstrap 5 tables, bootstrap 5 datatable, vanilla js datatable, colorlibhq, colorlibhq dashboard, colorlibhq admin dashboard"
|
|
/>
|
|
<!--end::Primary Meta Tags-->
|
|
<!--begin::Fonts-->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/@fontsource/source-sans-3@5.0.12/index.css"
|
|
integrity="sha256-tXJfXfp6Ewt1ilPzLDtQnJV4hclT9XuaZUKyUvmyr+Q="
|
|
crossorigin="anonymous"
|
|
/>
|
|
<!--end::Fonts-->
|
|
<!--begin::Third Party Plugin(OverlayScrollbars)-->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/overlayscrollbars@2.3.0/styles/overlayscrollbars.min.css" integrity="sha256-dSokZseQNT08wYEWiz5iLI8QPlKxG+TswNRD8k35cpg=" crossorigin="anonymous">
|
|
<!--end::Third Party Plugin(OverlayScrollbars)-->
|
|
<!--begin::Third Party Plugin(Bootstrap Icons)-->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.min.css" integrity="sha256-Qsx5lrStHZyR9REqhUF8iQt73X06c8LGIUPzpOhwRrI=" crossorigin="anonymous">
|
|
<!--end::Third Party Plugin(Bootstrap Icons)-->
|
|
<!--begin::Required Plugin(AdminLTE)-->
|
|
<link rel="stylesheet" href={path + "/css/adminlte" + cssPath + ".css"} />
|
|
<!--end::Required Plugin(AdminLTE)-->
|