From fb2085b8d040de3a1b73d192a50098f594e56072 Mon Sep 17 00:00:00 2001
From: Greg Wilson <gvwilson@third-bit.com>
Date: Thu, 26 May 2016 09:16:32 -0400
Subject: [PATCH] Create the first episode

---
 bin/initialize | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/bin/initialize b/bin/initialize
index 2cc65b4..d3d68e6 100755
--- a/bin/initialize
+++ b/bin/initialize
@@ -231,6 +231,20 @@ permalink: /setup/
 FIXME
 '''
 
+EPISODES_INTRODUCTION_MD = '''\
+---
+title: "Introduction"
+teaching: 0
+exercises: 0
+questions:
+- "Key question"
+objectives:
+- "First objective."
+keypoints:
+- "First key point."
+---
+'''
+
 EXTRAS_DISCUSS_MD = '''\
 ---
 layout: page
@@ -257,6 +271,7 @@ BOILERPLATE = (
     ('index.md', ROOT_INDEX_MD),
     ('reference.md', ROOT_REFERENCE_MD),
     ('setup.md', ROOT_SETUP_MD),
+    ('_episodes/01-introduction.md', EPISODES_INTRODUCTION_MD),
     ('_extras/discuss.md', EXTRAS_DISCUSS_MD),
     ('_extras/guide.md', EXTRAS_GUIDE_MD)
 )
-- 
GitLab