mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
4728784d1f
- Fix class styling issues and adjust UI components - Fix various minor bugs across the application - Update deployment documentation with improved instructions
27 lines
672 B
PHP
27 lines
672 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{ $title }}</title>
|
|
<script>
|
|
window.settings = {
|
|
base_url: "/",
|
|
title: "{{ $title }}",
|
|
version: "{{ $version }}",
|
|
logo: "{{ $logo }}",
|
|
secure_path: "{{ $secure_path }}",
|
|
};
|
|
</script>
|
|
<script type="module" crossorigin src="/assets/admin/assets/index.js"></script>
|
|
<link rel="stylesheet" crossorigin href="/assets/admin/assets/index.css" />
|
|
<link rel="stylesheet" crossorigin href="/assets/admin/assets/vendor.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
|
|
</html>
|