vodoraslo.xyz/themes/lugo/layouts/shortcodes/10_recent_posts.html

15 lines
969 B
HTML
Raw Normal View History

2023-04-03 18:25:08 +02:00
<ul class="tenRecentPosts">
{{- range first 10 .Site.RegularPages }}
2023-04-11 22:14:23 +02:00
<li>
{{- if .Param "datesinlist" }}<time
datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash;
{{ end -}}
2023-10-08 12:32:16 +02:00
<a href="{{ .RelPermalink }}" aria-label="{{ .Title }} {{.Summary |truncate 75 }} ... Click to Read more about {{ .Title }}"><b class="white_span">{{ .Title }}</b></a> - <span
class="muted_text">{{.Summary |truncate 150 }}</span> {{ if .Truncated }} <a href="{{ .RelPermalink }}" aria-label="{{ .Title }} {{.Summary |truncate 75 }} ... Click to Read more about {{ .Title }}" class="read_more_recent_posts" style="box-shadow: 0 1px 0;">Read
more about {{ .Title }}</a> <em> ({{.ReadingTime}} minute read).</em> {{ end }}
2023-04-11 22:14:23 +02:00
{{- if .Param "authorsinlist" }}
{{- range .Param "authors" }} by {{ . }}{{ end -}}
{{ end -}}
</li>
{{- end }}
2023-04-11 22:14:23 +02:00
</ul>