Files
agent_test/template/theme.html

34 lines
1.0 KiB
HTML
Raw Normal View History

2026-03-07 10:26:20 +07:00
<!DOCTYPE html>
2026-03-07 12:09:01 +07:00
<html lang="vi">
2026-03-07 10:26:20 +07:00
<head>
<meta charset="utf-8" />
2026-03-07 12:09:01 +07:00
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Admin Hura Pc</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto:wght@400;500;700;800&display=swap"
rel="stylesheet" />
2026-03-07 10:26:20 +07:00
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
2026-03-07 12:09:01 +07:00
<link rel="stylesheet" href="{{ 'miq-homepage.css' | asset_url }}" />
2026-03-07 10:26:20 +07:00
</head>
2026-03-07 12:09:01 +07:00
<body class="bg-[#f4f4f4]">
{% include "other/header" %}
2026-03-07 10:26:20 +07:00
2026-03-07 12:09:01 +07:00
<main id="layout-content">
{{ page_content }}
</main>
2026-03-07 10:26:20 +07:00
2026-03-07 12:09:01 +07:00
{% include "other/footer" %}
2026-03-07 10:26:20 +07:00
{% include javascript/index %}
</body>
</html>