about summary refs log tree commit diff stats
path: root/layouts/partials
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/partials
parent987cab567c5fc9bed00bf11b8693b44d40564e5e (diff)
downloadhyde-022af90cb3aa08e891639f3db47ad3bb7b47632a.tar.lz
hyde-022af90cb3aa08e891639f3db47ad3bb7b47632a.tar.zst
hyde-022af90cb3aa08e891639f3db47ad3bb7b47632a.zip
Remove schema.org markup
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/sidebar.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
index f9a9f21..51e68c6 100644
--- a/layouts/partials/sidebar.html
+++ b/layouts/partials/sidebar.html
@@ -1,5 +1,5 @@
 		<aside class="sidebar container">
-			<header class="sidebar-about h-card vcard p-author" itemprop="author" itemscope itemtype="http://schema.org/Person">
+			<header class="sidebar-about h-card vcard p-author">
 				{{ if (isset .Site.Author "image") }}
 				<a class="u-url u-uid" href="{{ .Site.BaseURL }}">
 					<img class="u-photo" src="{{ .Site.Author.image }}" width=128 height=128 />
@@ -7,9 +7,9 @@
 				{{ end }}
 
 				{{ if eq .Title .Site.Title }}
-				<h1 class="site-title u-name fn" itemprop="name">{{ .Site.Title }}</h1>
+				<h1 class="site-title u-name fn">{{ .Site.Title }}</h1>
 				{{ else }}
-				<span class="site-title u-name fn" itemprop="name">{{ .Site.Title }}</span>
+				<span class="site-title u-name fn">{{ .Site.Title }}</span>
 				{{ end }}
 
 				<p class="lead p-note">
@@ -19,7 +19,7 @@
 				<nav>
 					<ul class="sidebar-nav">
 						{{ range .Site.Menus.main }}
-						<li><a href="{{.URL}}" class="u-url url" itemprop="url"> {{ .Name }} </a></li>
+						<li><a href="{{.URL}}" class="u-url url"> {{ .Name }} </a></li>
 						{{end}}
 					</ul>
 				</nav>
@@ -32,7 +32,7 @@
 							{{ if hasPrefix .URL "mailto:" }}
 							<a href="{{ .URL }}" class="u-email email" rel="me">{{ .Name }}</a>
 							{{ else }}
-							<a href="{{ .URL }}" itemprop="url" rel="me">{{ .Name }}</a>
+							<a href="{{ .URL }}" rel="me">{{ .Name }}</a>
 						{{ end }}
 						</li>
 						{{ end }}
@@ -41,6 +41,6 @@
 			</header>
 
 			<footer>
-				Licensed under a <a rel="license" itemprop="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
+				Licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
 			</footer>
 		</aside>