diff options
author | Starfall <us@starfall.systems> | 2023-05-17 20:26:42 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2023-05-17 20:43:15 -0500 |
commit | ab48bfa194a3d24679062217dbe55e7eead51bee (patch) | |
tree | 3f64d35c076af8682a2c60c08626e5f722c7c607 /src/blog | |
parent | 1cc3d1798ec2b7d0cc2fde3f97aea346a22176bf (diff) |
switch to toml frontmatter
Diffstat (limited to 'src/blog')
-rw-r--r-- | src/blog/foobar.md | 6 | ||||
-rw-r--r-- | src/blog/hello-world.md | 7 |
2 files changed, 6 insertions, 7 deletions
diff --git a/src/blog/foobar.md b/src/blog/foobar.md index 081799b..9c3c805 100644 --- a/src/blog/foobar.md +++ b/src/blog/foobar.md @@ -1,6 +1,6 @@ --- -layout: base.njk -tags: ["post"] -title: Some second post +layout = "base.njk" +tags = [ "post" ] +title = "Second post" --- Second post, hooray! diff --git a/src/blog/hello-world.md b/src/blog/hello-world.md index 0feadd7..d75c546 100644 --- a/src/blog/hello-world.md +++ b/src/blog/hello-world.md @@ -1,7 +1,6 @@ --- -layout: base.njk -title: Hello, World! -tags: - - post +layout = "base.njk" +title = "Hello, World!" +tags = [ "post" ] --- Hello, World! |