lauralani
5afcbeb202
All checks were successful
ci/woodpecker/push/deploy-netlify Pipeline was successful
14 lines
No EOL
395 B
HTML
14 lines
No EOL
395 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 }}</title>
|
|
{{ $style := resources.Get "scss/style.scss" | toCSS | minify }}
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
|
</head>
|
|
<body>
|
|
<h1>{{ .Site.Title }}</h1>
|
|
{{ .Content }}
|
|
</body>
|
|
</html> |