diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-07-26 21:41:06 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-07-26 21:41:06 +0100 |
commit | af1c272329fb6487885e8906d5df5cc0b058d29b (patch) | |
tree | dae1a32f866dfe09a620289a0e6f6fbc29dfb7ff | |
parent | ec82d0e3cc01476791fb1d0d7f83a36f91d89ac1 (diff) |
changed about index to list page - thats better
-rw-r--r-- | content/about/_index.md (renamed from content/about/index.md) | 1 | ||||
-rw-r--r-- | layouts/about/list.html | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/content/about/index.md b/content/about/_index.md index d87b495..6d403ed 100644 --- a/content/about/index.md +++ b/content/about/_index.md @@ -2,7 +2,6 @@ title: "Yulqen - About this site" date: 2021-05-17T19:45:46+01:00 draft: false -slug: "about" --- Yulqen is a deliberate misspelling of an [Autechre](https://en.wikipedia.org/wiki/Autechre) song I like. diff --git a/layouts/about/list.html b/layouts/about/list.html new file mode 100644 index 0000000..e6d4204 --- /dev/null +++ b/layouts/about/list.html @@ -0,0 +1,6 @@ +{{ define "main" }} +<main> + <h2>{{ .Title }}</h2> + {{ .Content }} +</main> +{{ end }} |