40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="{{ .Site.Language.Lang }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
|
|
<link rel="icon" href='{{ "favicon.ico" | relURL }}?v=3' sizes="any">
|
|
<link rel="icon" type="image/png" href='{{ "images/favicon-192.png" | relURL }}?v=3' sizes="192x192">
|
|
<link rel="apple-touch-icon" href='{{ "images/favicon-512.png" | relURL }}?v=3'>
|
|
{{ partial "seo.html" . }}
|
|
<script>
|
|
tailwind = {
|
|
config: {
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Space Grotesk", "ui-sans-serif", "system-ui", "sans-serif"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<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=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body class="min-h-screen bg-white text-slate-900 antialiased">
|
|
|
|
{{ partial "site-header.html" . }}
|
|
|
|
<main>
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
|
|
{{ partial "site-footer.html" . }}
|
|
|
|
</body>
|
|
</html>
|