diff --git a/src/_includes/layout.html b/src/_includes/layout.html
new file mode 100644
index 0000000..5808b50
--- /dev/null
+++ b/src/_includes/layout.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+ Document
+
+
+
+ {{ title | default: "Bloggy" }}
+
+
+ {{ content }}
+
+
+
+
\ No newline at end of file
diff --git a/src/_site/index.html b/src/_site/index.html
new file mode 100644
index 0000000..d45e59f
--- /dev/null
+++ b/src/_site/index.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+First post!
+
+
+
+Second post!
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/_site/posts/post-1/index.html b/src/_site/posts/post-1/index.html
new file mode 100644
index 0000000..4eebb31
--- /dev/null
+++ b/src/_site/posts/post-1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+ Document
+
+
+
+
+ First post!
+
+
+
+
+
\ No newline at end of file
diff --git a/src/_site/posts/post-2/index.html b/src/_site/posts/post-2/index.html
new file mode 100644
index 0000000..cb23e00
--- /dev/null
+++ b/src/_site/posts/post-2/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+ Document
+
+
+
+
+ Second post!
+
+
+
+
+
\ No newline at end of file
diff --git a/src/index.html b/src/index.html
new file mode 100644
index 0000000..5227d01
--- /dev/null
+++ b/src/index.html
@@ -0,0 +1,9 @@
+---
+layout: layout.html
+title: Hello World!
+---
+
+{% for post in collections.post %}
+
+{{ post.content }}
+{% endfor %}
\ No newline at end of file
diff --git a/src/posts/post-1.md b/src/posts/post-1.md
new file mode 100644
index 0000000..a638331
--- /dev/null
+++ b/src/posts/post-1.md
@@ -0,0 +1,5 @@
+---
+title: Post Title
+---
+
+First post!
\ No newline at end of file
diff --git a/src/posts/post-2.md b/src/posts/post-2.md
new file mode 100644
index 0000000..1f7c691
--- /dev/null
+++ b/src/posts/post-2.md
@@ -0,0 +1,5 @@
+---
+title: Post Title Two!
+---
+
+Second post!
\ No newline at end of file
diff --git a/src/posts/posts.json b/src/posts/posts.json
new file mode 100644
index 0000000..be37ec9
--- /dev/null
+++ b/src/posts/posts.json
@@ -0,0 +1,4 @@
+{
+ "layout": "layout.html",
+ "tags": "post"
+}
\ No newline at end of file