vodoraslo.xyz/themes/lugo/layouts/shortcodes/10_recent_posts.html
2023-05-24 18:13:22 +03:00

15 lines
No EOL
758 B
HTML

<ul class="tenRecentPosts">
{{- range first 10 .Site.RegularPages }}
<li>
{{- if .Param "datesinlist" }}<time
datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash;
{{ end -}}
<a href="{{ .RelPermalink }}"><b class="white_span">{{ .Title }}</b></a> - <span
class="muted_text">{{.Summary |truncate 150 }}</span> {{ if .Truncated }} <a href="{{ .RelPermalink }}" class="read_more_recent_posts" style="box-shadow: 0 1px 0;">Read
more</a> <em> ({{.ReadingTime}} minute read).</em> {{ end }}
{{- if .Param "authorsinlist" }}
{{- range .Param "authors" }} by {{ . }}{{ end -}}
{{ end -}}
</li>
{{- end }}
</ul>