2020-04-10 20:23:17 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/icons.css">
|
|
|
|
<link rel="stylesheet" href="/simplesystems.css">
|
|
|
|
<link rel="stylesheet" href="/light-theme.css">
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
|
|
|
2020-06-01 22:11:20 +00:00
|
|
|
<title>{{ .Site.Title }} {{ block "title" . }} {{ with .Title }} | {{ . }} {{ end }} {{ end }}</title>
|
2020-04-10 20:23:17 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2020-06-01 22:07:55 +00:00
|
|
|
{{ partial "navbar.html" . }}
|
2020-04-10 20:23:17 +00:00
|
|
|
|
|
|
|
<main>
|
2020-06-01 22:07:55 +00:00
|
|
|
{{ block "main" . }} {{ end }}
|
2020-04-10 20:23:17 +00:00
|
|
|
</main>
|
|
|
|
|
2020-06-01 22:07:55 +00:00
|
|
|
{{ partial "footer.html" . }}
|
2020-04-10 20:23:17 +00:00
|
|
|
{{ partial "scripts/scripts.html" . }}
|
|
|
|
</body>
|
|
|
|
</html>
|