mirror of
https://gitlab.com/fabinfra/fabinfra-theme.git
synced 2025-03-12 22:51:49 +01:00
23 lines
740 B
HTML
23 lines
740 B
HTML
<div class="item-header">
|
|
{{ .Date.Format (.Site.Params.dateFormat | default "") | $.Scratch.Set "pub_date" }}
|
|
{{ with .Description }} {{ $.Scratch.Set "subtitle" . }} {{ end }}
|
|
{{ with .ReadingTime }} {{ $.Scratch.Set "read_time" . }} {{ end }}
|
|
|
|
|
|
<h4>{{ .Title }}</h4>
|
|
<h5>{{ $.Scratch.Get "pub_date" }} - {{ $.Scratch.Get "read_time" }} minutes</h5>
|
|
<h5>{{ $.Scratch.Get "subtitle" }}</h5>
|
|
|
|
{{ range.Params.categories }}
|
|
|
|
<a href="{{"/categories/"|relLangURL }}{{.|urlize}}">
|
|
<kbd class="item-cat"> {{ . }} </kbd>
|
|
</a>
|
|
{{ end }}
|
|
{{ range .Params.tags }}
|
|
<a href="{{"/tags/"|relLangURL }}{{.|urlize}}">
|
|
<kbd class="item-tag"> {{ . }} </kbd>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|