diff --git a/site/_layouts/news.html b/site/_layouts/news.html
index 187c2b05..75435f7b 100644
--- a/site/_layouts/news.html
+++ b/site/_layouts/news.html
@@ -8,8 +8,8 @@ layout: default
{% include news_contents_mobile.html %}
+
- {{ page.title }}
{{ content }}
diff --git a/site/_layouts/news_item.html b/site/_layouts/news_item.html
new file mode 100644
index 00000000..8cff4e3d
--- /dev/null
+++ b/site/_layouts/news_item.html
@@ -0,0 +1,28 @@
+---
+layout: default
+---
+
+
+
+
+ {% include news_contents_mobile.html %}
+
+
+
+
+
+
+ {{ page.content }}
+
+
+ Posted on {{ page.date | date_to_string }} by @{{ page.author }}, filed in {{ page.categories | array_to_sentence_string }}
+
+
+
+
+ {% include news_contents.html %}
+
+
+
+
+
diff --git a/site/_posts/2013-05-06-jekyll-1-dot-0-dot-0-released.markdown b/site/_posts/2013-05-06-jekyll-1-dot-0-dot-0-released.markdown
index 5f092e1b..9567c30a 100644
--- a/site/_posts/2013-05-06-jekyll-1-dot-0-dot-0-released.markdown
+++ b/site/_posts/2013-05-06-jekyll-1-dot-0-dot-0-released.markdown
@@ -1,5 +1,5 @@
---
-layout: news
+layout: news_item
title: "Jekyll 1.0.0 Released"
date: "2013-05-06 02:12:52 +0200"
author: parkr
diff --git a/site/_posts/2013-05-08-jekyll-1-dot-0-dot-1-released.markdown b/site/_posts/2013-05-08-jekyll-1-dot-0-dot-1-released.markdown
index 40df901a..e306818f 100644
--- a/site/_posts/2013-05-08-jekyll-1-dot-0-dot-1-released.markdown
+++ b/site/_posts/2013-05-08-jekyll-1-dot-0-dot-1-released.markdown
@@ -1,5 +1,5 @@
---
-layout: news
+layout: news_item
title: "Jekyll 1.0.1 Released"
date: "2013-05-08 23:46:11 +0200"
author: parkr
diff --git a/site/_posts/2013-05-12-jekyll-1-dot-0-dot-2-released.markdown b/site/_posts/2013-05-12-jekyll-1-dot-0-dot-2-released.markdown
index 95bd3a61..f95d8f35 100644
--- a/site/_posts/2013-05-12-jekyll-1-dot-0-dot-2-released.markdown
+++ b/site/_posts/2013-05-12-jekyll-1-dot-0-dot-2-released.markdown
@@ -1,5 +1,5 @@
---
-layout: news
+layout: news_item
title: "Jekyll 1.0.2 Released"
date: "2013-05-12 14:45:00 +0200"
author: parkr
diff --git a/site/css/style.css b/site/css/style.css
index 5d1e80b1..cac52784 100644
--- a/site/css/style.css
+++ b/site/css/style.css
@@ -499,9 +499,13 @@ body > footer a:hover img {
width: 100%;
}
-/* Blog */
+/* News */
-section.news article h2 {
+section.news .news-header {
+ margin: 0 50px;
+}
+
+section.news .news-listing h2 {
margin: 0;
padding-top: 10px;
border-top: rgba(220, 220, 220, 0.5) 1px solid;