From 171773ce20b0c120dcda7cae763da67d3257914c Mon Sep 17 00:00:00 2001
From: donal <donalspring@gmail.com>
Date: Tue, 03 Apr 2018 14:25:31 +0200
Subject: [PATCH] ADD - template for docsify layout of each exercise

---
 0-docs-template/images/new-item.png |    0 
 0-docs-template/index.html          |   21 +++++++++++++++++++++
 0-docs-template/README.md           |   38 ++++++++++++++++++++++++++++++++++++++
 0-docs-template/.nojekyll           |    0 
 4 files changed, 59 insertions(+), 0 deletions(-)

diff --git a/0-docs-template/.nojekyll b/0-docs-template/.nojekyll
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/0-docs-template/.nojekyll
diff --git a/0-docs-template/README.md b/0-docs-template/README.md
new file mode 100644
index 0000000..42b1f2e
--- /dev/null
+++ b/0-docs-template/README.md
@@ -0,0 +1,38 @@
+# Exercise Title
+
+> Short description of the exercise and it's outcomes
+
+## Learning Outcomes
+As a learner you will be able to
+- Do thing 1
+- Do thing 2
+- Do thing 3
+
+## Tools and Frameworks
+> Name of tool - short description and link to docs or website
+
+1. [Jenkins](https://jenkins.io/) - OpenSource build automation server; highly customisable through plugins
+1. [Ansible]() - blah blah ...
+
+
+## 10,000 Ft View
+> This should contain the goal of the exercise; with enough information that advanced learners could use this to build the exercise without much guidance. The information here
+
+## Step by Step Instructions
+> This is a fairly structured guide with references to exact filenames and sections of text to be added. Include pictures and code snippets where appropriate. Rule of thumb is learners are dumb.... so over describe _why_ we're doing things
+
+### Part 1 - do some things
+2. Do thing using tool X.
+2. Insert blah into `file1.txt`
+```
+export SOME_THING=biscuits
+```
+2. Open console and navigate to `New Item` and click it ![new-item](./images/new-item.png)
+
+### Part 2 - do some other things
+3. Do other things
+
+## Extension Tasks
+> Ideas for go-getters. Advanced topic for doers to get on with if they finish early. These will usually not have a solution and are provided for additional scope.
+
+ - Add Auth to your application
diff --git a/0-docs-template/images/new-item.png b/0-docs-template/images/new-item.png
new file mode 100644
index 0000000..1b2df87
--- /dev/null
+++ b/0-docs-template/images/new-item.png
Binary files differ
diff --git a/0-docs-template/index.html b/0-docs-template/index.html
new file mode 100644
index 0000000..e3eb7bf
--- /dev/null
+++ b/0-docs-template/index.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>Document</title>
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/buble.css">
+</head>
+<body>
+  <div id="app"></div>
+  <script>
+    window.$docsify = {
+      name: '',
+      repo: ''
+    }
+  </script>
+  <script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
+</body>
+</html>

--
Gitblit v1.9.3