Files
pas/Web/themes/tailadmin-free-tailwind-dashboard-template-main/src/blank.html
2025-07-13 09:32:53 +00:00

80 lines
2.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>
Blank Page | TailAdmin - Tailwind CSS Admin Dashboard Template
</title>
</head>
<body
x-data="{ page: 'blank', '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-1 flex-col overflow-y-auto overflow-x-hidden"
>
<!-- 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="mx-auto max-w-(--breakpoint-2xl) p-4 md:p-6">
<!-- Breadcrumb Start -->
<div x-data="{ pageName: `Blank Page`}">
<include src="./partials/breadcrumb.html" />
</div>
<!-- Breadcrumb End -->
<div
class="min-h-screen rounded-2xl border border-gray-200 bg-white px-5 py-7 dark:border-gray-800 dark:bg-white/[0.03] xl:px-10 xl:py-12"
>
<div class="mx-auto w-full max-w-[630px] text-center">
<h3
class="mb-4 text-theme-xl font-semibold text-gray-800 dark:text-white/90 sm:text-2xl"
>
Card Title Here
</h3>
<p
class="text-sm text-gray-500 dark:text-gray-400 sm:text-base"
>
Start putting content on grids or panels, you can also use
different combinations of grids.Please check out the
dashboard and other pages
</p>
</div>
</div>
</div>
</main>
<!-- ===== Main Content End ===== -->
</div>
<!-- ===== Content Area End ===== -->
</div>
<!-- ===== Page Wrapper End ===== -->
</body>
</html>