about summary refs log tree commit diff stats
path: root/layouts/_default/list.html
diff options
context:
space:
mode:
authorAlan Pearce2017-07-04 20:37:08 +0200
committerAlan Pearce2017-07-04 20:37:08 +0200
commit022af90cb3aa08e891639f3db47ad3bb7b47632a (patch)
tree40cad115562bb16bd0487ca3367849538fe7d537 /layouts/_default/list.html
parent987cab567c5fc9bed00bf11b8693b44d40564e5e (diff)
downloadhyde-022af90cb3aa08e891639f3db47ad3bb7b47632a.tar.lz
hyde-022af90cb3aa08e891639f3db47ad3bb7b47632a.tar.zst
hyde-022af90cb3aa08e891639f3db47ad3bb7b47632a.zip
Remove schema.org markup
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r--layouts/_default/list.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index e401596..f6fad64 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -1,12 +1,12 @@
 {{ partial "head.html" . }}
-	<body class="theme-base-0b layout-reverse" itemscope itemtype="http://schema.org/Blog">
+	<body class="theme-base-0b layout-reverse">
 		<main class="content container" role="main">
 			<h1 class="page-title">{{ .Title }}</h1>
 			<ul class="posts">
 				{{ range .Data.Pages }}
-				<li itemscope itemtype="http://schema.org/BlogPosting">
-					<a class="post-title u-url" itemprop="url" href="{{ .Permalink | replaceRE "/$" "" }}"><span itemprop="name">{{ .Title }}<span></a>
-					<time class="post-date" itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time>
+				<li>
+					<a class="post-title u-url" href="{{ .Permalink | replaceRE "/$" "" }}">{{ .Title }}</a>
+					<time class="post-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time>
 				</li>
 				{{ end }}
 			</ul>