ADDED website templates #1
This commit is contained in:
@@ -0,0 +1,80 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
|
||||
/>
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
<title>
|
||||
Basic Tables | TailAdmin - Tailwind CSS Admin Dashboard Template
|
||||
</title>
|
||||
</head>
|
||||
<body
|
||||
x-data="{ page: 'basicTables', 'loaded': true, 'darkMode': false, 'stickyMenu': false, 'sidebarToggle': false, 'scrollTop': false }"
|
||||
x-init="
|
||||
darkMode = JSON.parse(localStorage.getItem('darkMode'));
|
||||
$watch('darkMode', value => localStorage.setItem('darkMode', JSON.stringify(value)))"
|
||||
:class="{'dark bg-gray-900': darkMode === true}"
|
||||
>
|
||||
<!-- ===== Preloader Start ===== -->
|
||||
<include src="./partials/preloader.html"></include>
|
||||
<!-- ===== Preloader End ===== -->
|
||||
|
||||
<!-- ===== Page Wrapper Start ===== -->
|
||||
<div class="flex h-screen overflow-hidden">
|
||||
<!-- ===== Sidebar Start ===== -->
|
||||
<include src="./partials/sidebar.html"></include>
|
||||
<!-- ===== Sidebar End ===== -->
|
||||
|
||||
<!-- ===== Content Area Start ===== -->
|
||||
<div
|
||||
class="relative flex flex-col flex-1 overflow-x-hidden overflow-y-auto"
|
||||
>
|
||||
<!-- Small Device Overlay Start -->
|
||||
<include src="./partials/overlay.html" />
|
||||
<!-- Small Device Overlay End -->
|
||||
|
||||
<!-- ===== Header Start ===== -->
|
||||
<include src="./partials/header.html" />
|
||||
<!-- ===== Header End ===== -->
|
||||
|
||||
<!-- ===== Main Content Start ===== -->
|
||||
<main>
|
||||
<div class="p-4 mx-auto max-w-(--breakpoint-2xl) md:p-6">
|
||||
<!-- Breadcrumb Start -->
|
||||
<div x-data="{ pageName: `Basic Tables`}">
|
||||
<include src="./partials/breadcrumb.html" />
|
||||
</div>
|
||||
<!-- Breadcrumb End -->
|
||||
|
||||
<div class="space-y-5 sm:space-y-6">
|
||||
<div
|
||||
class="rounded-2xl border border-gray-200 bg-white dark:border-gray-800 dark:bg-white/[0.03]"
|
||||
>
|
||||
<div class="px-5 py-4 sm:px-6 sm:py-5">
|
||||
<h3
|
||||
class="text-base font-medium text-gray-800 dark:text-white/90"
|
||||
>
|
||||
Basic Table 1
|
||||
</h3>
|
||||
</div>
|
||||
<div
|
||||
class="p-5 border-t border-gray-100 dark:border-gray-800 sm:p-6"
|
||||
>
|
||||
<!-- ====== Table Six Start -->
|
||||
<include src="./partials/table/table-06.html" />
|
||||
<!-- ====== Table Six End -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!-- ===== Main Content End ===== -->
|
||||
</div>
|
||||
<!-- ===== Content Area End ===== -->
|
||||
</div>
|
||||
<!-- ===== Page Wrapper End ===== -->
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user