From cd5cb49995d4998df9060de49296c9dabca7252e Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 4 May 2022 11:04:08 +0200 Subject: Add draft admonitions --- layouts/posts/single.html | 13 +++++++++++++ layouts/recipes/single.html | 16 ++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/layouts/posts/single.html b/layouts/posts/single.html index 072168c..ce18ad5 100644 --- a/layouts/posts/single.html +++ b/layouts/posts/single.html @@ -5,6 +5,19 @@ {{- range .Params.tags }} #{{ . }} {{- end }} + {{- if .Draft }} +
+
+ draft +
+
+ This blog post is still a + draft. It has most likely been + shared with you for reviewing purposes. Please + do not yet share this with other people. +
+
+ {{- end }}
{{ .Content }} diff --git a/layouts/recipes/single.html b/layouts/recipes/single.html index 01b0bd2..14b8ffc 100644 --- a/layouts/recipes/single.html +++ b/layouts/recipes/single.html @@ -9,6 +9,22 @@ {{- range .Params.tags }} #{{ . }} {{- end }} + {{- if .Draft }} +
+
+ draft +
+
+ This recipe is still a draft. + It has most likely been shared with you for + reviewing purposes, but neither the + instructions nor the ingredients have been + properly checked yet. Do not make this recipe + unless you are an experienced cook, and please + do not yet share it with other people. +
+
+ {{- end }}
{{ .Content }} -- cgit v1.1