diff options
author | Starfall <us@starfall.systems> | 2023-05-24 10:32:11 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2023-05-24 12:51:23 -0500 |
commit | eb6d8bd51fb3a5ad9868829e19c838939346f8cb (patch) | |
tree | 59fef31c5389833f2ca639b4019de5e542328444 /src/blog/hidden.md | |
parent | 87a7df0947d3cc1ac224b9de15220d8fbf73ea46 (diff) |
demonstrate draft post, set some defaults on blog
Diffstat (limited to 'src/blog/hidden.md')
-rw-r--r-- | src/blog/hidden.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/blog/hidden.md b/src/blog/hidden.md new file mode 100644 index 0000000..330b617 --- /dev/null +++ b/src/blog/hidden.md @@ -0,0 +1,7 @@ +--- +eleventyExcludeFromCollections = true +permalink = false +--- +Both of the above booleans need to be set for a post to be a proper draft. Without `permalink=false`, the page will +still be generated and be available as a direct link. Without `eleventExcludeFromCollections=true`, a link will be +generated on starfall.systems/blog and the Atom feed (though if permalink is off, it won't go anywhere). |