Files
admin_hura_8/template/theme.html

51 lines
1.1 KiB
HTML
Raw Normal View History

2024-01-18 23:13:02 +07:00
<!DOCTYPE html>
2024-02-27 13:31:27 +07:00
<html lang="en">
2024-01-18 23:13:02 +07:00
<head>
2024-01-29 15:22:13 +07:00
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title> Admin Hura Pc </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
2024-01-18 23:13:02 +07:00
2025-11-20 13:10:28 +07:00
<script>
try {
const localStorageItem = localStorage.getItem("__NEXUS_CONFIG_v3.0__")
if (localStorageItem) {
const theme = JSON.parse(localStorageItem).theme
if (theme !== "system") {
document.documentElement.setAttribute("data-theme", theme)
}
}
} catch (err) {
console.log(err)
}
</script>
2025-11-21 16:34:19 +07:00
<link rel="stylesheet" href="{{'style.css' | asset_url}}?{{ 'now' | date : '%Y-%m-%d.%H.%M.%S' }}">
2025-11-20 13:10:28 +07:00
2024-01-18 23:13:02 +07:00
</head>
2024-02-29 14:49:03 +07:00
2024-01-29 15:22:13 +07:00
<body>
2025-04-01 13:46:03 +07:00
2025-11-20 13:10:28 +07:00
<div class="size-full">
2024-01-29 15:22:13 +07:00
2025-11-21 16:34:19 +07:00
<div class="flex h-screen min-w-0 grow flex-col overflow-auto">
2025-11-20 13:10:28 +07:00
2025-11-21 16:34:19 +07:00
{% include "other/header" %}
2025-11-20 13:10:28 +07:00
2025-11-21 16:34:19 +07:00
<div id="layout-content">
{{ page_content }}
2024-01-25 17:37:49 +07:00
</div>
2024-05-11 10:11:24 +07:00
</div>
2025-11-21 16:34:19 +07:00
2024-01-20 09:23:31 +07:00
</div>
2024-01-24 11:49:22 +07:00
2025-11-20 13:10:28 +07:00
2025-02-11 16:22:18 +07:00
2024-05-07 15:42:55 +07:00
{% include javascript/index %}
2025-11-20 13:10:28 +07:00
2024-01-18 23:13:02 +07:00
</body>
2024-01-29 15:22:13 +07:00
2024-02-27 13:31:27 +07:00
</html>