summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2019-08-02 19:20:31 -0400
committerBrian Picciano <mediocregopher@gmail.com>2019-08-02 19:20:31 -0400
commit6ae2ab2e708607070779446124c2b70581fefbef (patch)
tree53eee0b978b95126195ec7d187f02abda0fa8055
parent7f9d4504e1bde949ba202940541d93b5930685fa (diff)
soft-launch the program structure post
-rw-r--r--_layouts/home.html1
-rw-r--r--_posts/2019-08-02-program-structure-and-composability.md (renamed from _drafts/program-structure-and-composability.md)1
2 files changed, 2 insertions, 0 deletions
diff --git a/_layouts/home.html b/_layouts/home.html
index 856f298..4a24765 100644
--- a/_layouts/home.html
+++ b/_layouts/home.html
@@ -5,6 +5,7 @@ layout: default
{%- if site.posts.size > 0 -%}
<ul id="posts-list">
{%- for post in site.posts -%}
+ {%- if post.hide -%}{%- continue -%}{%- endif -%}
<li>
<h2>
<a href="{{ post.url | relative_url }}">
diff --git a/_drafts/program-structure-and-composability.md b/_posts/2019-08-02-program-structure-and-composability.md
index ef04300..54b0b76 100644
--- a/_drafts/program-structure-and-composability.md
+++ b/_posts/2019-08-02-program-structure-and-composability.md
@@ -4,6 +4,7 @@ title: >-
description: >-
Discussing the nature of program structure, the problems presented by
complex structures, and a pattern which helps in solving those problems.
+hide: true
---
## Part 0: Introduction