From f0a417b55b8ea5e0745508fc9a6825c964a7eb3e Mon Sep 17 00:00:00 2001 From: Kyle Johnson Date: Fri, 13 Jun 2014 08:35:50 -0400 Subject: [PATCH] Initial commit of default news / blog posts This needs work... --- _includes/posts.html | 15 +++++++++++++++ news.html | 7 +++++++ 2 files changed, 22 insertions(+) create mode 100644 _includes/posts.html create mode 100644 news.html diff --git a/_includes/posts.html b/_includes/posts.html new file mode 100644 index 000000000..1ad6ce4be --- /dev/null +++ b/_includes/posts.html @@ -0,0 +1,15 @@ +{% for post in site.posts %} +
+
+

{{ post.title }}

+
+ +
+ {{ post.content }} +
+ + +
+{% endfor %} diff --git a/news.html b/news.html new file mode 100644 index 000000000..f03407222 --- /dev/null +++ b/news.html @@ -0,0 +1,7 @@ +--- +layout: page +title: News +permalink: /news/ +--- + +{% include posts.html %}