2022-05-16 23:55:08 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>{{ block "title" . }}
|
|
|
|
{{ .Site.Title }}
|
|
|
|
{{ end }}</title>
|
2022-05-18 02:35:01 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href='{{ "./style.css" | relURL}}'>
|
2022-05-16 23:55:08 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Code that all your templates share, like a header -->
|
|
|
|
{{ block "main" . }}
|
|
|
|
<!-- The part of the page that begins to differ between templates -->
|
|
|
|
{{ end }}
|
|
|
|
{{ block "footer" . }}
|
|
|
|
<!-- More shared code, perhaps a footer but that can be overridden if need be in -->
|
|
|
|
{{ end }}
|
|
|
|
</body>
|
|
|
|
</html>
|