* Beginning of hugo driven theming

This commit is contained in:
shockrah
2021-08-14 13:46:18 -07:00
parent f5844e5d51
commit 06fa590790
15 changed files with 400 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/css/style.css">
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title = .Site.Title}}{{end}}
<title>{{ $title }}</title>
</head>