2025-04-24 17:06:14 -04:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/favico.png" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2025-04-25 19:17:40 -04:00
|
|
|
<meta name="description" content="{{ data.description }}"/>
|
|
|
|
<meta name="keywords" content="{{ data.keywords }}"/>
|
|
|
|
<meta property='og:title' content="{{ data.opengraph_title }}" />
|
|
|
|
<meta property='og:description' content="{{ data.opengraph_description }}" />
|
|
|
|
<meta property='og:image' content="{{ data.opengraph_image }}" />
|
|
|
|
<meta property='og:url' content="{{ data.opengraph_url }}" />
|
2025-04-24 17:06:14 -04:00
|
|
|
<meta property='og:locale' content='en_US' />
|
2025-04-25 19:17:40 -04:00
|
|
|
<title>{{ data.tab_title }}</title>
|
2025-04-24 17:06:14 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="root"></div>
|
|
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
|
|
</body>
|
2025-04-25 19:17:40 -04:00
|
|
|
</html>
|