From 59acdaab9a5270d8e97deaefb38ee185c8a19f4a Mon Sep 17 00:00:00 2001 From: robschia Date: Mon, 8 Dec 2014 19:46:49 +0100 Subject: [PATCH] Fixed itemprop="author name" You are right, I tried to oversimplify it. Also, {{ page.date | %Y-%m-%d }} doesn't output what I expected. I think it's fixed now, I tried the code with a couple of validators and everything seems fine. --- lib/site_template/_layouts/post.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/site_template/_layouts/post.html b/lib/site_template/_layouts/post.html index ed4a98b1..5a072b3e 100644 --- a/lib/site_template/_layouts/post.html +++ b/lib/site_template/_layouts/post.html @@ -5,7 +5,7 @@ layout: default

{{ page.title }}

-

{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}

+

{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}