diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 1461424..d9249da 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -12,7 +12,7 @@
},
{{- $ISO8601 := "2006-01-02T15:04:05-07:00" }}
{{- if not .Date.IsZero }}
- "dateModified": "{{ .Date.Format $ISO8601 }}",
+ "dateModified": {{ .Date.Format $ISO8601 }},
{{- end }}
{{- with .Site.Social.GooglePlus }}
"publisher": "{{ printf "%s" . }}",
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index ac9cfa3..6f8967d 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -25,12 +25,12 @@
"wordCount": "{{ .WordCount }}",
{{- $ISO8601 := "2006-01-02T15:04:05-07:00" }}
{{- if not .PublishDate.IsZero }}
- "datePublished": "{{ .PublishDate.Format $ISO8601 }}",
+ "datePublished": {{ .PublishDate.Format $ISO8601 }},
{{- else }}
- "datePublished": "{{ .Date.Format $ISO8601 }}",
+ "datePublished": {{ .Date.Format $ISO8601 }},
{{- end }}
{{- if not .Lastmod.IsZero }}
- "dateModified": "{{ .Lastmod.Format $ISO8601 }}",
+ "dateModified": {{ .Lastmod.Format $ISO8601 }},
{{- end }}
{{- with .Site.Social.GooglePlus }}
"publisher": "{{ printf "%s" . }}",