From: Maximilian Friedersdorff Date: Sat, 13 Apr 2019 10:33:12 +0000 (+0100) Subject: Make articles drafts by default X-Git-Url: https://git.friedersdorff.com/?p=max%2Fnotes.git;a=commitdiff_plain;h=cc6c3655396023cf639874c721a81be64adc0640 Make articles drafts by default --- diff --git a/content/apache_restart.rst b/content/apache_restart.rst index 3312a8a..4dad03b 100644 --- a/content/apache_restart.rst +++ b/content/apache_restart.rst @@ -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 diff --git a/content/colemak_cryptsetup_passphrases.rst b/content/colemak_cryptsetup_passphrases.rst index c73c647..7666519 100644 --- a/content/colemak_cryptsetup_passphrases.rst +++ b/content/colemak_cryptsetup_passphrases.rst @@ -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 diff --git a/content/hello_world.rst b/content/hello_world.rst index 9a9751d..a8ffd6e 100644 --- a/content/hello_world.rst +++ b/content/hello_world.rst @@ -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. diff --git a/content/license.rst b/content/license.rst index b6d55f0..25685c1 100644 --- a/content/license.rst +++ b/content/license.rst @@ -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 diff --git a/content/project_bike/project_bike.rst b/content/project_bike/project_bike.rst index f258a92..d3d5c4a 100644 --- a/content/project_bike/project_bike.rst +++ b/content/project_bike/project_bike.rst @@ -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. diff --git a/pelicanconf.py b/pelicanconf.py index 307cb1d..1ccb524 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -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', +}