Special post handling
This commit is contained in:
parent
c0780047bf
commit
3d2d1f897e
9 changed files with 24 additions and 5 deletions
|
@ -7,6 +7,7 @@
|
||||||
"slugs": [
|
"slugs": [
|
||||||
],
|
],
|
||||||
"source": "/dev/null",
|
"source": "/dev/null",
|
||||||
|
"special": false,
|
||||||
"tags": [
|
"tags": [
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -7,6 +7,7 @@
|
||||||
"slugs": [
|
"slugs": [
|
||||||
],
|
],
|
||||||
"source": "/home/nathan/Projects/Blog/projects/Markdown/MyNewBlog.md",
|
"source": "/home/nathan/Projects/Blog/projects/Markdown/MyNewBlog.md",
|
||||||
|
"special": false,
|
||||||
"tags": [
|
"tags": [
|
||||||
"meta",
|
"meta",
|
||||||
"raku"
|
"raku"
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
"slugs": [
|
"slugs": [
|
||||||
],
|
],
|
||||||
"source": "/home/nathan/Projects/Blog/projects/Markdown/About.md",
|
"source": "/home/nathan/Projects/Blog/projects/Markdown/About.md",
|
||||||
|
"special": false,
|
||||||
"tags": [
|
"tags": [
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -7,6 +7,7 @@
|
||||||
"slugs": [
|
"slugs": [
|
||||||
],
|
],
|
||||||
"source": "/home/nathan/Projects/Blog/projects/Markdown/CryptoSuite.md",
|
"source": "/home/nathan/Projects/Blog/projects/Markdown/CryptoSuite.md",
|
||||||
|
"special": false,
|
||||||
"tags": [
|
"tags": [
|
||||||
"cryptography"
|
"cryptography"
|
||||||
]
|
]
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
"slugs": [
|
"slugs": [
|
||||||
],
|
],
|
||||||
"source": "/home/nathan/Projects/Blog/projects/Markdown/2025/01-Jan/AdventOfBugs.md",
|
"source": "/home/nathan/Projects/Blog/projects/Markdown/2025/01-Jan/AdventOfBugs.md",
|
||||||
|
"special": false,
|
||||||
"tags": [
|
"tags": [
|
||||||
"idris",
|
"idris",
|
||||||
"advent-of-code"
|
"advent-of-code"
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
],
|
],
|
||||||
"source": "/home/nathan/Projects/Blog/projects/Idris/src/LessMacrosMoreTypes/Printf.md",
|
"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",
|
"source-code": "https://git.stranger.systems/thatonelutenist/website/src/branch/trunk/projects/Idris/src/LessMacrosMoreTypes/Printf.md",
|
||||||
|
"special": false,
|
||||||
"tags": [
|
"tags": [
|
||||||
"idris"
|
"idris"
|
||||||
]
|
]
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
"slugs": [
|
"slugs": [
|
||||||
],
|
],
|
||||||
"source": "/home/nathan/Projects/Blog/projects/Markdown/HireMe.md",
|
"source": "/home/nathan/Projects/Blog/projects/Markdown/HireMe.md",
|
||||||
|
"special": true,
|
||||||
"tags": [
|
"tags": [
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,10 +51,20 @@ initComments(\{
|
||||||
body [
|
body [
|
||||||
site-header $meta;
|
site-header $meta;
|
||||||
article :class<post>, [
|
article :class<post>, [
|
||||||
post-header $id, $post, $db;
|
# Only generate the post header if the post isn't special
|
||||||
div :class<post-body>, [
|
optl !$post.special, -> {post-header $id, $post, $db};
|
||||||
$content;
|
# If the post is special, wrap it in a special div
|
||||||
];
|
do if $post.special {
|
||||||
|
div :class<special-post>, [
|
||||||
|
div :class<post-body>, [
|
||||||
|
$content;
|
||||||
|
];
|
||||||
|
];
|
||||||
|
} else {
|
||||||
|
div :class<post-body>, [
|
||||||
|
$content;
|
||||||
|
];
|
||||||
|
}
|
||||||
];
|
];
|
||||||
# Only actually have the comment section if the post isn't hidden
|
# Only actually have the comment section if the post isn't hidden
|
||||||
optl !$post.hidden, -> {div :id<comment-section>, :class<comments>};
|
optl !$post.hidden, -> {div :id<comment-section>, :class<comments>};
|
||||||
|
|
|
@ -43,6 +43,8 @@ has Str:D @.tags is rw is json = [];
|
||||||
has Bool:D $.hidden is json is rw = False;
|
has Bool:D $.hidden is json is rw = False;
|
||||||
#| An optional link to the source code for the post
|
#| An optional link to the source code for the post
|
||||||
has Str $.source-code is rw is json;
|
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
|
#| Get the title for this post, intended to be extracted from whatever
|
||||||
#| document produced it
|
#| document produced it
|
||||||
|
|
Loading…
Add table
Reference in a new issue