2020-09-25 09:36:26 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>{{ block "title" . }}
|
|
|
|
<!-- Blocks may include default content. -->
|
|
|
|
{{ .Site.Title }}
|
|
|
|
{{ end }}</title>
|
2020-09-25 10:02:02 -04:00
|
|
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@200;900&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
font-weight: 200;
|
|
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, strong {
|
|
|
|
font-weight: 900;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2020-09-25 09:36:26 -04: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>
|