itsdrike.com/layouts/_default/baseof.html

19 lines
547 B
HTML
Raw Normal View History

2021-08-24 18:06:02 +00:00
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
2021-08-25 08:52:41 +00:00
{{ partial "style.html" "scss/style.scss" }}
2021-08-25 08:53:38 +00:00
{{ partial "style.html" "css/highlight.css" }}
2021-08-25 09:05:43 +00:00
{{ partial "style.html" "css/font-awesome.css" }}
2021-08-25 09:27:49 +00:00
<title>{{ partial "title-item.html" . }}{{ .Site.Title }}</title>
2021-08-24 18:06:02 +00:00
</head>
<body>
{{ block "main" . }}{{ end }}
2021-08-25 11:07:58 +00:00
{{ partial "footer.html" . }}
2021-08-25 09:27:49 +00:00
{{ partial "script_async.html" "js/bootstrap.min.js" }}
{{ block "scripts_extra" . }}{{ end }}
2021-08-24 18:06:02 +00:00
</body>
</html>