about summary refs log tree commit diff stats
path: root/layouts/index.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/index.html
parent987cab567c5fc9bed00bf11b8693b44d40564e5e (diff)
downloadhyde-022af90cb3aa08e891639f3db47ad3bb7b47632a.tar.lz
hyde-022af90cb3aa08e891639f3db47ad3bb7b47632a.tar.zst
hyde-022af90cb3aa08e891639f3db47ad3bb7b47632a.zip
Remove schema.org markup
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 69f35fa..cdca9ae 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,13 +1,13 @@
 {{ 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">
 			<section class="recent">
 				<h2>Recent Posts</h2>
 				<ul class="posts">
 					{{ range first 10 .Data.Pages }}
-					<li itemscope itemtype="http://schema.org/BlogPosting">
-						<a class="post-title" itemprop="url" href="{{ .RelPermalink | 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" href="{{ .RelPermalink | 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>