From 053e34a3d621eee6f819d6ed24edb7b68e017afa Mon Sep 17 00:00:00 2001 From: Thomas Busby Date: Wed, 30 May 2018 23:09:04 +0200 Subject: [PATCH] Add blog post page and prevent HTML compression locally --- README.md | 2 +- _config.yml | 4 ++++ blog.html | 22 ++++++++++++++++++++++ static/css/main.css | 3 +++ 4 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 blog.html diff --git a/README.md b/README.md index 9a52bbe..9eaf8b8 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ If you want to create a new "subsection" type collection, you'll have to wire th I use British spelling conventions because that's what I grew up with. For the sake of keeping the site internally consistent, I may ask you to "correct" your spellings to British spellings for any content you submit. ### Dates formats -Exact dates should be given in the following format: 31-Oct-2008. This is because this format is unambigious when accounting for US vs inernational date standards. Always use three-letter months. Other date formats I'll accept are: +Exact dates should be given in the following format: 31-Oct-2008. This is because this format is unambiguous when accounting for US vs inernational date standards. Always use three-letter months. Other date formats I'll accept are: + 1990s (for a broad period of time without clear beginnings and ends) + Aug-Sep 2013 (for a month-to-month range in the same year) diff --git a/_config.yml b/_config.yml index 9332135..c3b26a9 100644 --- a/_config.yml +++ b/_config.yml @@ -55,6 +55,8 @@ share: fb_appid: urls: + - text: Blog + url: /blog - text: XML Feed url: /feed.xml @@ -78,3 +80,5 @@ compress_html: clippings: all comments: [""] endings: all + ignore: + envs: ['development'] diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..254669e --- /dev/null +++ b/blog.html @@ -0,0 +1,22 @@ +--- +layout: default +--- + +
+

Crypto Anarchy:

+

Encryption, digital money, anonymous networks, digital pseudonyms, zero knowledge, reputations, information markets, black markets, collapse of governments.

+
+ +
+ +

Blog Posts

+ +I probably won't write too much here, but any major changes to the site or anything I want to write about that doesn't fit into an existing category will go here. + +
+
    + {% for post in site.posts %} +
  1. {{ post.title }} » {{ post.date | date_to_string }}
  2. + {% endfor %} +
+
diff --git a/static/css/main.css b/static/css/main.css index ddfeaa0..b7bd737 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -62,6 +62,9 @@ a:hover { .index-header h1, .index-header p { font-family: monospace; } +div#home { + margin-top: 10px; +} div.content { padding-top: 10px; }