diff options
Diffstat (limited to 'layouts/articles/page.html')
| -rw-r--r-- | layouts/articles/page.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/layouts/articles/page.html b/layouts/articles/page.html index 6465f71..5fe8cf4 100644 --- a/layouts/articles/page.html +++ b/layouts/articles/page.html @@ -1,15 +1,15 @@ {{ define "main" }} - <h1 class="title">{{ .Title }}</h1> - <p> - {{- partial "date.html" .Date -}} - {{- if gt .Lastmod .Date -}} - — modified {{ partial "date.html" .Lastmod }} - {{- end -}} - <br> - {{- if .Page.GetTerms "tags" }} - Tags: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) -}}. - {{- end }} - </p> - <hr> - {{ .Content }} +<h1 class="title">{{ .Title }}</h1> +<p> + {{- partial "date.html" .Date -}} + {{- if gt .Lastmod .Date -}} + — modified {{ partial "date.html" .Lastmod }} + {{- end -}} + <br> + {{- if .Page.GetTerms "tags" }} + Tags: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) -}}. + {{- end }} +</p> +<hr> +{{ .Content }} {{ end }} |