Basic stylesheet

This commit is contained in:
David Eisinger
2023-01-09 23:15:41 -05:00
parent 954a775d58
commit d9469b8245
4 changed files with 8 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
.hugo_build.lock
public
resources/_gen

View File

@@ -0,0 +1,4 @@
body {
font-family: monospace;
padding: 50px;
}

View File

@@ -1,4 +1,6 @@
<head>
<meta charset="utf-8">
<title>{{ .Site.Title }}</title>
{{ $css := resources.Get "css/style.scss" | toCSS | minify | fingerprint }}
<link rel="stylesheet" href="{{ $css.RelPermalink }}">
</head>

View File

@@ -1,3 +1,3 @@
<header>
<h1><a href="/">{{ .Site.Title }}</a></h1>
<header>
</header>