]> git.friedersdorff.com Git - max/notes.git/commitdiff
Make articles drafts by default
authorMaximilian Friedersdorff <max@friedersdorff.com>
Sat, 13 Apr 2019 10:33:12 +0000 (11:33 +0100)
committerMaximilian Friedersdorff <max@friedersdorff.com>
Sat, 13 Apr 2019 10:33:12 +0000 (11:33 +0100)
content/apache_restart.rst
content/colemak_cryptsetup_passphrases.rst
content/hello_world.rst
content/license.rst
content/project_bike/project_bike.rst
pelicanconf.py

index 3312a8ae63064e57c69916fac87884455e68880e..4dad03b2d78b8069be0f21754b91f266ddabfa6a 100644 (file)
@@ -6,6 +6,7 @@ Fixing nightly Apache crashes and improving the letsencrypt renewal configuratio
 :tags: apache, system administration, letsencrypt
 :authors: Maximilian Friedersdorff
 :summary: My apache web server is stopping every night.  I investigate why and fix it.
+:status: published
 
 Over the last few days the Apache web server that runs on my home
 server has been acting up again.  Every morning I noticed that it 
index c73c647e0fb9dbf672bfd76115fada27f36d7270..7666519143f842e087ce0979e1eb17fb238d241c 100644 (file)
@@ -6,6 +6,7 @@ Achieving a Colemak Layout for Typing LUKS Passphrases in Early Boot
 :tags: cryptsetup, system administration, full disk encryption
 :authors: Maximilian Friedersdorff
 :summary: Having to type passphrases with an unfamiliar keyboard layout is slow and frustrating. 
+:status: published
 
 I use full disk encryption using `LVM on LUKS`_ on all of my desktops and
 laptops. I trust my memory more than I do any USB device and so I rely on
index 9a9751d2ecba7e259ed997c8e8e6bf741f8848b2..a8ffd6e3f2c349635e1587e81a36e29e0438d5e9 100644 (file)
@@ -6,6 +6,7 @@ Hello World
 :tags: hello world, test
 :authors: Maximilian Friedersdorff
 :summary: A content free entry to test pelican
+:status: published
 
 This is a hello world entry.  I am testing that things are working.
 Have a some, but not a lot of content.
index b6d55f09253eddbff48a04593caac72c2f5c702f..25685c14450ecf3e3c6dcae02ddf1be441570360 100644 (file)
@@ -6,6 +6,7 @@ Licensing of content on this website
 :tags: license
 :authors: Maximilian Friedersdorff
 :summary: All content on this website is available under the CC-BY-SA 
+:status: published
 
 .. image:: https://i.creativecommons.org/l/by-sa/4.0/88x31.png
 
index f258a921a1c14e9fe33fc68a61873721ec0d57cd..d3d5c4aad4ebed3073d89cd017116a00b9d96ec9 100644 (file)
@@ -6,6 +6,7 @@ Project Bike: I got a new Bicycle
 :tags: bicycle
 :authors: Maximilian Friedersdorff
 :summary: Introduction to a project bike: Dawes Super Galaxy
+:status: published
 
 
 I just bought a new (to me) bicycle, an old-ish Dawes Super Galaxy.
index 307cb1ddafd4b147d7c47c6cf70619d977bf8309..1ccb524e044237405250a14e812fe2d9e78022e4 100644 (file)
@@ -32,3 +32,7 @@ DEFAULT_PAGINATION = 10
 
 # Uncomment following line if you want document-relative URLs when developing
 #RELATIVE_URLS = True
+
+DEFAULT_METADATA = {
+    'status': 'draft',
+}