website/layouts/index.html
2025-01-17 23:32:57 -03:00

27 lines
No EOL
468 B
HTML

{{/* <!doctype html>
<html>
<head>
{{ $style := resources.Get "sass/main.scss" | css.Sass | resources.Minify }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>
{{ .Page.Title }}
</title>
</head>
<body>
{{ .Content }}
{{ partial "footer.html" . }}
</body>
</html> */}}
{{ define "main" }}
<main>
<div>
{{ .Content }}
</div>
</main>
{{ end }}