lauralani
5afcbeb202
All checks were successful
ci/woodpecker/push/deploy-netlify Pipeline was successful
13 lines
No EOL
442 B
HTML
13 lines
No EOL
442 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ or .Title .Site.Title }}{{ if ne .Kind "home" }} | {{ .CurrentSection.Title }}{{ end }}</title>
|
|
{{ $style := resources.Get "scss/style.scss" | toCSS | minify }}
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
|
</head>
|
|
<body>
|
|
{{ block "page" . }}{{ end }}
|
|
</body>
|
|
</html> |