summaryrefslogtreecommitdiff
path: root/_layouts/home.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/home.html')
-rw-r--r--_layouts/home.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/_layouts/home.html b/_layouts/home.html
new file mode 100644
index 0000000..9a2976a
--- /dev/null
+++ b/_layouts/home.html
@@ -0,0 +1,12 @@
+---
+layout: default
+---
+
+<h1>News{% if paginator.page > 1 %} Archive{% endif %}</h1>
+
+{% for post in paginator.posts %}
+ <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
+ {{ post.content | markdownify }}
+{% endfor %}
+
+{% include paginate.html %}