mirror of https://github.com/ColorlibHQ/AdminLTE
Moved general BS components page under 'UI Elements'
parent
04d9a3679a
commit
6b0e0a88d4
|
@ -216,6 +216,15 @@ const htmlPath = convertPathToHtml(path);
|
|||
</p>
|
||||
</a>
|
||||
<ul class="nav nav-treeview">
|
||||
<li class="nav-item">
|
||||
<a
|
||||
href={htmlPath + "/UI/general.html"}
|
||||
class:list={["nav-link", page === "bsgeneral" && "active"]}
|
||||
>
|
||||
<i class="nav-icon bi bi-circle"></i>
|
||||
<p>General Elements</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a
|
||||
href={htmlPath + "/UI/timeline.html"}
|
||||
|
@ -250,21 +259,6 @@ const htmlPath = convertPathToHtml(path);
|
|||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class:list={["nav-item", mainPage === "bscomponents" && "menu-open"]}>
|
||||
<a href="#" class:list={["nav-link", mainPage === "bscomponents" && "active"]}>
|
||||
<i class="nav-icon bi bi-ui-checks-grid"></i>
|
||||
<p>Components<i class="nav-arrow bi bi-chevron-right"></i>
|
||||
</p>
|
||||
</a>
|
||||
<ul class="nav nav-treeview">
|
||||
<li class="nav-item">
|
||||
<a href={htmlPath + "/components/general.html"} class:list={["nav-link", page === "bsgeneral" && "active"]}>
|
||||
<i class="nav-icon bi bi-circle"></i>
|
||||
<p>General Components</p>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class:list={["nav-item", mainPage === "tables" && "menu-open"]}>
|
||||
<a
|
||||
href="#"
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
---
|
||||
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";
|
||||
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 | General Components";
|
||||
const title = "AdminLTE 4 | General UI Elements";
|
||||
const path = "../../../dist";
|
||||
const mainPage = "bscomponents";
|
||||
const mainPage = "ui-elements";
|
||||
const page = "bsgeneral";
|
||||
const pageTitle = "General Components";
|
||||
const pageTitle = "General UI Elements";
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
Loading…
Reference in New Issue