hugo-test-site/layouts/_default/baseof.html

18 lines
368 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Test Site</title>
{{ with (partial "system_css.html" .) }}
<link rel=stylesheet href={{ .Permalink }}>
{{ end }}
</head>
<body>
<main>
{{ block "main" . }}{{ end }}
</main>
</body>
<style>
</style>
</html>