41 lines
No EOL
1.3 KiB
Text
41 lines
No EOL
1.3 KiB
Text
---
|
|
// Properties
|
|
const {
|
|
Title,
|
|
Description,
|
|
EmbedId,
|
|
EmbedVideo,
|
|
EmbedImage,
|
|
EmbedTitle,
|
|
} = Astro.props
|
|
|
|
// Components
|
|
import { Tooltips } from 'astro-tooltips';
|
|
|
|
// Styles
|
|
import '@styles/base.scss'
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<head>
|
|
<!-- Metadata -->
|
|
<title>{Title}</title>
|
|
<meta name="description" content={Description}>
|
|
|
|
<!-- Properties -->
|
|
<meta charset="UTF-8">
|
|
<meta name="theme-color" content="#111">
|
|
<meta name="viewport" content="width=device-1200px, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=yes, viewport-fit=cover, width=device-width, height=device-height, target-densitydpi=device-dpi">
|
|
<meta http-equiv="content-language" content="en-us">
|
|
<!-- <link rel="manifest" href="/manifest.json" />
|
|
<script is:inline src="/service-worker.js"></script> -->
|
|
<Tooltips interactive={false} delay={[15, 12]} />
|
|
|
|
<!-- Favicon -->
|
|
<link rel="apple-touch-icon" type="image/png" sizes="256x256" href="/images/logo/Favicon.png">
|
|
<link rel="icon" type="image/png" sizes="256x256" href="/images/logo/Favicon.png">
|
|
|
|
<!-- Fonts -->
|
|
<!-- https://github.com/github/mona-sans -->
|
|
<link rel="preload" href="/fonts/mona-sans/Mona-Sans.woff2" as="font" type="font/woff2" crossorigin>
|
|
</head> |