You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
846 B
Plaintext
29 lines
846 B
Plaintext
---
|
|
import '@fontsource/open-sans/latin.css'
|
|
import '@fontsource/source-sans-pro/latin.css'
|
|
import '@fontsource/source-code-pro/latin.css'
|
|
|
|
import '../styles/main.scss'
|
|
|
|
const { title, description, thumbnail, pageName } = Astro.props
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta property="og:title" content={title ?? 'PHC'} />
|
|
<meta property="og:description" content={description ?? 'Sito web del PHC'} />
|
|
{thumbnail && <meta property="og:image" content={thumbnail} />}
|
|
|
|
<link rel="icon" type="image/png" sizes="512x512" href="/assets/icon.png" />
|
|
|
|
<title>{title}</title>
|
|
</head>
|
|
<body class:list={['page-' + (pageName ?? 'unknown')]}>
|
|
<slot />
|
|
</body>
|
|
</html>
|