Welcome to mirror list, hosted at ThFree Co, Russian Federation.

post-meta.html « partials « layouts - github.com/the2ne/hugo-frais.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1790b6944a9519be59f61888e4c0ce982fd06488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ $baseurl := .Site.BaseURL }}
<ul class="post__meta__infos">
    <li class="post__meta__author" itemprop="author">{{ .Site.Params.author }}</li>
    <li class="post__meta__date"><time datetime="{{ .Date.Format "2006-01-02" }}" itemprop="datePublished">{{ .Date.Format "02 January 2006" }}</time></li>
</ul>
<ul class="post__meta__tags">
    {{ range .Params.tags }}
    <li><a href="{{ $baseurl }}tags/{{ . }}">{{ . }} </a></li>
    {{ end }}
</ul>
<meta itemprop="url" content="{{ .Permalink }}">
<meta itemprop="wordCount" content="{{ .WordCount }}" />
<meta itemprop="timeRequired" content="{{ .ReadingTime }} Min" />