You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
531 B
22 lines
531 B
{{ partial "header" . }} |
|
|
|
<main> |
|
|
|
{{ partial "list-item" . }} |
|
|
|
<br> <div class="text-justify">{{ .Content }}</div> |
|
|
|
<!-- related posts with the same tags --> |
|
{{ $related := first 3 (where (where (where .Site.Pages.ByDate.Reverse ".Type" "==" "post") ".Params.tags" "intersect" .Params.tags) "Permalink" "!=" .Permalink) }} |
|
|
|
{{ if $related }} |
|
|
|
<h4 class="page-header">Related</h4> |
|
|
|
{{ range $related }} {{ partial "list-item" . }} {{ end }} |
|
|
|
{{ end }} |
|
|
|
</main> |
|
|
|
{{ partial "footer.html" . }}
|
|
|