init commit

This commit is contained in:
2024-08-20 23:05:39 -07:00
commit 0f90d0ec4b
35 changed files with 10389 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}">
<head>
<title>
{{ if .IsHome }}
{{ .Site.Title }} - {{ .Site.Params.tagline }}
{{ else }}
{{ .Title }} - {{ .Site.Title }}
{{ end }}
</title>
{{ partial "head.html" . }}
</head>
<body class="{{ if eq .Type "page" }}page-template-default page{{ else if eq .Type "post" }}post-template-default post{{ else }}page-template-default page{{ end }}">
<div id="{{ if eq .Type "page" }}page{{ else if eq .Type "post" }}post{{ else }}page{{ end }}" class="site">
{{ partial "header.html" . }}
{{ block "main" . }}{{ end }}
{{ partial "footer.html" . }}
{{ partial "script.html" . }}
</div>
</body>
</html>