summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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