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.
28 lines
856 B
28 lines
856 B
{{ partial "header" . }} |
|
|
|
<main> |
|
|
|
<div> |
|
<h2>{{ .Title }}</h2> |
|
<h5>{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006") }}</h5> |
|
{{ partial "tags" . }} |
|
</div> |
|
|
|
<div align="start" class="content">{{ .Content }}</div> |
|
|
|
<!-- Related posts --> |
|
{{ $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 }} |
|
|
|
<!-- Disquis comments --> |
|
{{ if and .Site.DisqusShortname (not .Params.disableComments) }} |
|
<h4 class="page-header">Comments</h4> |
|
{{ template "_internal/disqus.html" . }} |
|
{{ end }} |
|
|
|
</main> |
|
|
|
{{ partial "footer" . }}
|
|
|