2020-03-06 17:20:22 +01:00
|
|
|
<div class="list-item">
|
|
|
|
{{ with .Permalink }} {{ $.Scratch.Set "link" . }} {{ end }}
|
2020-02-26 15:48:48 +01:00
|
|
|
|
2020-03-06 17:20:22 +01:00
|
|
|
{{ with .Description }} {{ $.Scratch.Set "subtitle" . }} {{ end }}
|
|
|
|
{{ with .ReadingTime }} {{ $.Scratch.Set "read_time" . }} {{ end }}
|
|
|
|
|
2020-02-26 15:48:48 +01:00
|
|
|
|
2020-03-06 17:20:22 +01:00
|
|
|
<h4><a href="{{ .Scratch.Get "link" }}">{{ .Title }}</a></h4>
|
2020-02-26 15:48:48 +01:00
|
|
|
<h5>{{ $.Scratch.Get "subtitle" }}</h5>
|
|
|
|
{{ range.Params.categories }}
|
2020-03-06 17:20:22 +01:00
|
|
|
<a href="{{"/categories/"|relLangURL }}{{.|urlize}}">
|
|
|
|
<kbd class="item-cat"> {{ . }} </kbd>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
2020-02-26 15:48:48 +01:00
|
|
|
{{ range .Params.tags }}
|
|
|
|
<a href="{{"/tags/"|relLangURL }}{{.|urlize}}">
|
|
|
|
<kbd class="item-tag"> {{ . }} </kbd>
|
2020-03-06 17:20:22 +01:00
|
|
|
</a>
|
2020-03-04 18:25:13 +01:00
|
|
|
{{ end }}
|
2020-03-06 17:20:22 +01:00
|
|
|
|
|
|
|
</div>
|