mirror of https://github.com/lxndrblz/anatole.git

David Scholz
13.17.2024 f8eda4ac663328b89e8e99d3d5d18b815ccccee1
1
2
3
4
5
6
7
8
9
{{ $related := .Site.RegularPages.Related . | first .Site.Params.numberOfRelatedPosts }}
{{ with $related }}
  <h3>{{- T "related_posts" -}}</h3>
  <ul>
    {{ range . }}
    <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
    {{ end }}
  </ul>
{{ end }}