hugo-www-lauka-net/layouts/home.html

14 lines
395 B
HTML
Raw Permalink Normal View History

2023-08-08 09:03:06 +02:00
<!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>