40 lines
940 B
HTML
40 lines
940 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<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">
|
|
|
|
<!-- library tailwindcss + daisyui css -->
|
|
<link rel="stylesheet" href="{{ 'hura-lib.css' | asset_url }}" />
|
|
|
|
<!-- hura global css -->
|
|
<link rel="stylesheet" href="{{ 'hura.global.css' | asset_url }}" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div class="flex h-screen min-w-0 grow flex-col overflow-auto">
|
|
|
|
{% include "other/header" %}
|
|
|
|
<div id="layout-content">
|
|
{{ page_content }}
|
|
</div>
|
|
|
|
<footer class="footer sm:footer-horizontal footer-center bg-base-300 text-base-content p-4">
|
|
<aside>
|
|
<p>Copyright © 2025 - HuraSoft</p>
|
|
</aside>
|
|
</footer>
|
|
</div>
|
|
|
|
{% include javascript/index %}
|
|
|
|
</body>
|
|
|
|
</html> |