Add header to homepage, improve h2 margins

This commit is contained in:
Joshua Goins 2022-11-03 15:15:24 -04:00
parent 70cda0d606
commit 2326d84e37
3 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,7 @@
---
title: "Home"
---
**new** My website has received a makeover, and features a few new sections for you to explore. **new** My website has received a makeover, and features a few new sections for you to explore.
Welcome to my personal corner of the Internet! Welcome to my personal corner of the Internet!

View file

@ -151,3 +151,7 @@ table {
margin-left: 1em; margin-left: 1em;
margin-right: 1em; margin-right: 1em;
} }
h2 {
margin-top: 0.2em;
}

View file

@ -1,3 +1,7 @@
{{ define "main" }} {{ define "main" }}
{{ .Content }} <h2>{{ .Title }}</h2>
<div>
{{ .Content }}
</div>
{{ end }} {{ end }}