docs intro and browser support
This commit is contained in:
58
src/html/pages/docs/browser-support.astro
Normal file
58
src/html/pages/docs/browser-support.astro
Normal file
@@ -0,0 +1,58 @@
|
||||
---
|
||||
import Head from "@components/_head.astro";
|
||||
import Footer from "@components/dashboard/_footer.astro";
|
||||
import Topbar from "@components/dashboard/_topbar.astro";
|
||||
import BrowserSupport from "@components/docs/browser-support/index.md";
|
||||
import Sidenav from "@components/dashboard/_sidenav.astro";
|
||||
import Scripts from "@components/_scripts.astro";
|
||||
const title = "Browser Support | AdminLTE 4";
|
||||
const path = '../../../dist'
|
||||
const mainPage = "browser-support";
|
||||
const page = "docs";
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<Head title={title} path={path} />
|
||||
</head>
|
||||
<body class="layout-fixed sidebar-expand-lg bg-body-tertiary">
|
||||
<div class="app-wrapper">
|
||||
<Topbar path={path} />
|
||||
<Sidenav path={path} mainPage={mainPage} page={page} />
|
||||
<!-- Main content -->
|
||||
<main class="app-main">
|
||||
<div class="app-content-header">
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<h3 class="mb-0">Browser Support</h3>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<ol class="breadcrumb float-sm-end">
|
||||
<li class="breadcrumb-item"><a href="#">Docs</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">
|
||||
Browser Support
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Main content -->
|
||||
<div class="app-content">
|
||||
<div class="container-fluid">
|
||||
<BrowserSupport />
|
||||
</div><!-- /.container-fluid -->
|
||||
</div>
|
||||
<!-- /.content -->
|
||||
</main>
|
||||
<!-- /.app-content -->
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
<!-- ./app-wrapper -->
|
||||
|
||||
<Scripts path={path} />
|
||||
</body>
|
||||
</html>
|
||||
@@ -6,10 +6,10 @@ import Sidenav from "@components/dashboard/_sidenav.astro";
|
||||
import Scripts from "@components/_scripts.astro";
|
||||
import NavbarHtml from "@components/docs/color-mode/navbar-html.md";
|
||||
import ToggleScript from "@components/docs/color-mode/toggle-script.md";
|
||||
const title = "AdminLTE 4 | General Form Elements";
|
||||
const title = "Color Mode | AdminLTE 4";
|
||||
const path = '../../../dist'
|
||||
const mainPage = "forms";
|
||||
const page = "general";
|
||||
const mainPage = "color-mode";
|
||||
const page = "docs";
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
@@ -31,7 +31,7 @@ const page = "general";
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<ol class="breadcrumb float-sm-end">
|
||||
<li class="breadcrumb-item"><a href="#">Home</a></li>
|
||||
<li class="breadcrumb-item"><a href="#">Docs</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">
|
||||
General Form
|
||||
</li>
|
||||
@@ -127,13 +127,9 @@ const page = "general";
|
||||
</div>
|
||||
<!-- Start column -->
|
||||
<div class="col-12">
|
||||
<div class="lte-code-snippet">
|
||||
<NavbarHtml />
|
||||
</div>
|
||||
<NavbarHtml />
|
||||
|
||||
<div class="lte-code-snippet">
|
||||
<ToggleScript />
|
||||
</div>
|
||||
<ToggleScript />
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.row -->
|
||||
|
||||
58
src/html/pages/docs/index.astro
Normal file
58
src/html/pages/docs/index.astro
Normal file
@@ -0,0 +1,58 @@
|
||||
---
|
||||
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 Introduction from "@components/docs/introduction/index.md";
|
||||
const title = "Introduction | AdminLTE 4";
|
||||
const path = '../../../dist'
|
||||
const mainPage = "introduction";
|
||||
const page = "docs";
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<Head title={title} path={path} />
|
||||
</head>
|
||||
<body class="layout-fixed sidebar-expand-lg bg-body-tertiary">
|
||||
<div class="app-wrapper">
|
||||
<Topbar path={path} />
|
||||
<Sidenav path={path} mainPage={mainPage} page={page} />
|
||||
<!-- Main content -->
|
||||
<main class="app-main">
|
||||
<div class="app-content-header">
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<h3 class="mb-0">Introduction</h3>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<ol class="breadcrumb float-sm-end">
|
||||
<li class="breadcrumb-item"><a href="#">Docs</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">
|
||||
Introduction
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Main content -->
|
||||
<div class="app-content">
|
||||
<div class="container-fluid">
|
||||
<Introduction />
|
||||
</div><!-- /.container-fluid -->
|
||||
</div>
|
||||
<!-- /.content -->
|
||||
</main>
|
||||
<!-- /.app-content -->
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
<!-- ./app-wrapper -->
|
||||
|
||||
<Scripts path={path} />
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user