From 5b6c96833a338ef2cedd1aca112ce64ab9996e6d Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 19 Feb 2025 11:07:48 -0700 Subject: [PATCH] add callout examples to template --- content/posts/template.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/content/posts/template.md b/content/posts/template.md index dfac6c5..f42ec02 100644 --- a/content/posts/template.md +++ b/content/posts/template.md @@ -7,3 +7,17 @@ draft = true categories = [ "blog" ] tags = [ "topic" ] +++ + +{% note(header="Note") %} +Hi! I'm a note! +{% end %} + +{% important(header="Important") %} +I'm more important! +{% end %} + +There are also `warning`, `tip` and `alert` to use as well! + +```nix +I'm a code block! +````