grannysmith-technical/layouts/_default/baseof.html

17 lines
440 B
HTML
Raw Normal View History

2023-08-09 17:27:08 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/index.css" rel="stylesheet">
{{ block "head" . }}
{{ end }}
2023-08-09 17:27:08 +00:00
</head>
<body>
{{ block "main" . }}
content goes here
{{ end }}
</body>
</html>