mirror of
https://gitlab.com/fabinfra/fabinfra-theme.git
synced 2025-03-13 23:21:51 +01:00
39 lines
879 B
HTML
39 lines
879 B
HTML
|
{{ 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 }}
|
||
|
|
||
|
{{ if and .Site.DisqusShortname (not .Params.disableComments) }}
|
||
|
|
||
|
<h4 class="page-header">Comments</h4>
|
||
|
|
||
|
{{ template "_internal/disqus.html" . }}
|
||
|
|
||
|
{{ end }}
|
||
|
|
||
|
{{ if .Site.Params.talkHost }}
|
||
|
{{ partial "talk.html" . }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ if .Site.Params.coralHost }}
|
||
|
{{ partial "coral.html" . }}
|
||
|
{{ end }}
|
||
|
|
||
|
</main>
|
||
|
|
||
|
{{ partial "footer.html" . }}
|