diff options
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r-- | layouts/_default/single.html | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 26df731..1f48df8 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,14 +1,14 @@ {{ partial "head.html" . }} - <body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}} h-entry" itemscope itemtype="http://schema.org/BlogPosting"> + <body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}} h-entry"> <main class="content container" role="main"> <article class="post"> <header> <a class="u-url" href="{{ .Permalink | replaceRE "/$" "" }}"> - <h1 class="post-title p-name" itemprop="name">{{ .Title }}</h1> + <h1 class="post-title p-name">{{ .Title }}</h1> </a> - <time class="post-date dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}" itemprop="datePublished">{{ .Date.Format "Monday, 2 January 2006" }}</time> + <time class="post-date dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> </header> - <main class="post-content e-content" itemprop="articleBody"> + <main class="post-content e-content"> {{ .Content }} </main> <footer class="footer"> @@ -24,9 +24,7 @@ <p> Tags: {{ range .Params.tags }} - <span itemprop="keywords"> - <a class="p-category" href="/tags/{{ . | urlize }}/">{{ . }}</a> - </span> + <a class="p-category" href="/tags/{{ . | urlize }}/">{{ . }}</a> {{ end }} </p> |