recettes/themes/hugo-recettes/layouts/partials/list-entry.html

15 lines
599 B
HTML

<article itemscope itemtype="http://schema.org/Blog">
<h4 class="list-content-title pb-3">
<a href="{{ .Permalink }}index.html">{{ .Title }}</a>
<small class="text-muted font-weight-light">
{{ with .Date }}
<time itemprop="datePublished" datetime="{{ .Format "2006-01-02" }}">
{{ .Day }} {{ index $.Site.Data.months (printf "%d" .Month) }} {{ .Year }}
</time>
{{ end }}
{{ .Params.portion }}
{{ with .Params.time }} • {{ . }}{{ end }}
</small>
</h4>
</article>