9 lines
225 B
HTML
9 lines
225 B
HTML
{{- $related := .Site.RegularPages.Related . | first 3 -}}
|
|
{{- with $related -}}
|
|
<div class="related-content row d-flex justify-content-around">
|
|
{{- range . -}}
|
|
{{ .Render "card" }}
|
|
{{- end -}}
|
|
</div>
|
|
{{- end -}}
|