diff --git a/src/html/components/dashboard/_sidenav.astro b/src/html/components/dashboard/_sidenav.astro index 6b752c52a..424d35dd3 100644 --- a/src/html/components/dashboard/_sidenav.astro +++ b/src/html/components/dashboard/_sidenav.astro @@ -161,6 +161,33 @@ const htmlPath = convertPathToHtml(path);
Fixed Sidebar
+Fixed Header
+ +Fixed Footer
+ +Fixed Complete
+ +<footer class="app-footer ${footerBg}" data-bs-theme="${footerColorMode}">...</footer>
`;
+ }
+
+ footerColorModes.addEventListener("input", (event) => {
+ footerColorMode = event.target.value;
+ updateFooter();
+ });
+
+ footerColor.addEventListener("input", (event) => {
+ footerBg = event.target.value;
+
+ themeBg.forEach((className) => {
+ appFooter.classList.remove(className);
+ });
+
+ if (themeBg.includes(footerBg)) {
+ appFooter.classList.add(footerBg);
+ }
+
+ updateFooter();
+ });
+ });
diff --git a/src/html/pages/layout/fixed-complete.astro b/src/html/pages/layout/fixed-complete.astro new file mode 100644 index 000000000..9a0fe3976 --- /dev/null +++ b/src/html/pages/layout/fixed-complete.astro @@ -0,0 +1,109 @@ +--- +import Head from "@components/_head.astro"; +import Footer from "@components/dashboard/_footer.astro"; +import Topbar from "@components/dashboard/_topbar.astro"; +import Sidenav from "@components/dashboard/_sidenav.astro"; +import Scripts from "@components/_scripts.astro"; + +const title = "AdminLTE 4 | Fixed Complete"; +const path = "../../../dist"; +const mainPage = "layout"; +const page = "fixed-complete"; +--- + + + + +
+
+ + + +
+