diff options
author | Alan Pearce | 2017-07-04 20:37:08 +0200 |
---|---|---|
committer | Alan Pearce | 2017-07-04 20:37:08 +0200 |
commit | 022af90cb3aa08e891639f3db47ad3bb7b47632a (patch) | |
tree | 40cad115562bb16bd0487ca3367849538fe7d537 /layouts/index.html | |
parent | 987cab567c5fc9bed00bf11b8693b44d40564e5e (diff) | |
download | hyde-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.html | 8 |
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> |