mirror of
https://github.com/dialect-app/website.git
synced 2025-06-18 20:36:25 +00:00
26 lines
No EOL
815 B
HTML
26 lines
No EOL
815 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{{ if not .IsHome }}{{ .Title }} — {{ end }}{{ .Site.Title }}</title>
|
|
|
|
{{ $opts := dict "transpiler" "libsass" "targetPath" "css/style.css" }}
|
|
{{ with resources.Get "sass/main.scss" | toCSS $opts | minify | fingerprint }}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
{{ end }}
|
|
|
|
{{- block "scripts" . }}{{- end }}
|
|
</head>
|
|
<body>
|
|
|
|
{{- partial "header.html" . -}}
|
|
|
|
<main>
|
|
{{- block "main" . }}{{- end }}
|
|
</main>
|
|
|
|
{{- partial "footer.html" . -}}
|
|
</body>
|
|
</html> |