diff --git a/db/posts/0.json b/db/posts/0.json index d978506..a7aae12 100644 --- a/db/posts/0.json +++ b/db/posts/0.json @@ -7,6 +7,7 @@ "slugs": [ ], "source": "/dev/null", + "special": false, "tags": [ ] } \ No newline at end of file diff --git a/db/posts/1.json b/db/posts/1.json index 62e539a..0ccc785 100644 --- a/db/posts/1.json +++ b/db/posts/1.json @@ -7,6 +7,7 @@ "slugs": [ ], "source": "/home/nathan/Projects/Blog/projects/Markdown/MyNewBlog.md", + "special": false, "tags": [ "meta", "raku" diff --git a/db/posts/2.json b/db/posts/2.json index fa46788..c97b41b 100644 --- a/db/posts/2.json +++ b/db/posts/2.json @@ -7,6 +7,7 @@ "slugs": [ ], "source": "/home/nathan/Projects/Blog/projects/Markdown/About.md", + "special": false, "tags": [ ] } \ No newline at end of file diff --git a/db/posts/3.json b/db/posts/3.json index 527339e..9ffa6d3 100644 --- a/db/posts/3.json +++ b/db/posts/3.json @@ -7,6 +7,7 @@ "slugs": [ ], "source": "/home/nathan/Projects/Blog/projects/Markdown/CryptoSuite.md", + "special": false, "tags": [ "cryptography" ] diff --git a/db/posts/4.json b/db/posts/4.json index 9effd7d..d474d97 100644 --- a/db/posts/4.json +++ b/db/posts/4.json @@ -7,6 +7,7 @@ "slugs": [ ], "source": "/home/nathan/Projects/Blog/projects/Markdown/2025/01-Jan/AdventOfBugs.md", + "special": false, "tags": [ "idris", "advent-of-code" diff --git a/db/posts/5.json b/db/posts/5.json index 485766b..4f6f206 100644 --- a/db/posts/5.json +++ b/db/posts/5.json @@ -11,6 +11,7 @@ ], "source": "/home/nathan/Projects/Blog/projects/Idris/src/LessMacrosMoreTypes/Printf.md", "source-code": "https://git.stranger.systems/thatonelutenist/website/src/branch/trunk/projects/Idris/src/LessMacrosMoreTypes/Printf.md", + "special": false, "tags": [ "idris" ] diff --git a/db/posts/6.json b/db/posts/6.json index d45ddf4..f4b3c3b 100644 --- a/db/posts/6.json +++ b/db/posts/6.json @@ -7,6 +7,7 @@ "slugs": [ ], "source": "/home/nathan/Projects/Blog/projects/Markdown/HireMe.md", + "special": true, "tags": [ ] -} \ No newline at end of file +} diff --git a/lib/Config.rakumod b/lib/Config.rakumod index aa178de..9a612fc 100644 --- a/lib/Config.rakumod +++ b/lib/Config.rakumod @@ -51,10 +51,20 @@ initComments(\{ body [ site-header $meta; article :class, [ - post-header $id, $post, $db; - div :class, [ - $content; - ]; + # Only generate the post header if the post isn't special + optl !$post.special, -> {post-header $id, $post, $db}; + # If the post is special, wrap it in a special div + do if $post.special { + div :class, [ + div :class, [ + $content; + ]; + ]; + } else { + div :class, [ + $content; + ]; + } ]; # Only actually have the comment section if the post isn't hidden optl !$post.hidden, -> {div :id, :class}; diff --git a/lib/DB/Post.rakumod b/lib/DB/Post.rakumod index 6cf7ad0..c95eab6 100644 --- a/lib/DB/Post.rakumod +++ b/lib/DB/Post.rakumod @@ -43,6 +43,8 @@ has Str:D @.tags is rw is json = []; has Bool:D $.hidden is json is rw = False; #| An optional link to the source code for the post has Str $.source-code is rw is json; +#| Special posts follow different rendering rules +has Bool:D $.special is json is rw = False; #| Get the title for this post, intended to be extracted from whatever #| document produced it