diff --git a/layouts/shortcodes/attachments.html b/layouts/shortcodes/attachments.html
index 108dcda659..b2311bb3ca 100644
--- a/layouts/shortcodes/attachments.html
+++ b/layouts/shortcodes/attachments.html
@@ -5,33 +5,32 @@
- {{ $icon := .Get "icon" }}
- {{ $iconposition := .Get "icon-position" }}
- {{ if ($icon) }}
- {{ if or (not ($iconposition)) (eq $iconposition "left") }}
-
- {{ end }}
- {{ end }}
+{{- $_hugo_config := `{ "version": 1 }` }}
+
+ {{- $icon := .Get "icon" }}
+ {{- $iconposition := .Get "icon-position" }}
+ {{- if ($icon) }}
+ {{- if or (not ($iconposition)) (eq $iconposition "left") }}
+
+ {{- end }}
+ {{- end }}
{{ .Inner }}
- {{ if and ($icon) (eq $iconposition "right")}}
+ {{- if and ($icon) (eq $iconposition "right")}}
- {{ end }}
+ {{- end }}
diff --git a/layouts/shortcodes/children.html b/layouts/shortcodes/children.html
index b551931387..eb5e6b01b1 100644
--- a/layouts/shortcodes/children.html
+++ b/layouts/shortcodes/children.html
@@ -1,100 +1,100 @@
-{{ $_hugo_config := `{ "version": 1 }` }}
-{{ $showhidden := .Get "showhidden"}}
-{{ $style := .Get "style" | default "li" }}
-{{ $depth := .Get "depth" | default 1 }}
-{{ $withDescription := .Get "description" | default false }}
-{{ $sortTerm := .Get "sort" | default (.Site.Params.ordersectionsby | default "weight") | lower }}
-{{ $containerstyle := .Get "containerstyle" | default "ul" }}
+{{- $_hugo_config := `{ "version": 1 }` }}
+{{- $showhidden := .Get "showhidden"}}
+{{- $style := .Get "style" | default "li" }}
+{{- $depth := .Get "depth" | default 1 }}
+{{- $withDescription := .Get "description" | default false }}
+{{- $sortTerm := .Get "sort" | default (.Site.Params.ordersectionsby | default "weight") | lower }}
+{{- $containerstyle := .Get "containerstyle" | default "ul" }}
-{{(printf "<%s class=\"children children-%s children-sort-%s\">" $containerstyle $style $sortTerm)|safeHTML}}
- {{ .Scratch.Set "pages" .Page.Pages }}
+{{ (printf "<%s class=\"children children-%s children-sort-%s\">" $containerstyle $style $sortTerm)|safeHTML }}
+ {{- .Scratch.Set "pages" .Page.Pages }}
- {{if .Page.IsHome}}
+ {{- if .Page.IsHome }}
- {{ $rootPage := where .Page.Pages "Dir" "" }}
- {{ .Scratch.Set "pages" (.Page.Sections | union $rootPage)}}
- {{else}}
- {{ if .Page.Sections}}
- {{ .Scratch.Set "pages" (.Page.Pages | union .Page.Sections) }}
- {{end}}
- {{end}}
+ {{- $rootPage := where .Page.Pages "Dir" "" }}
+ {{- .Scratch.Set "pages" (.Page.Sections | union $rootPage)}}
+ {{- else }}
+ {{- if .Page.Sections}}
+ {{- .Scratch.Set "pages" (.Page.Pages | union .Page.Sections) }}
+ {{- end }}
+ {{- end }}
- {{ $pages := (.Scratch.Get "pages") }}
+ {{- $pages := (.Scratch.Get "pages") }}
- {{if eq $sortTerm "weight"}}
- {{template "childs" dict "menu" $pages.ByWeight "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm}}
- {{else if or (eq $sortTerm "name") (eq $sortTerm "title")}}
- {{template "childs" dict "menu" $pages.ByTitle "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm}}
- {{else if eq $sortTerm "publishdate"}}
- {{template "childs" dict "menu" $pages.ByPublishDate "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm}}
- {{else if eq $sortTerm "date"}}
- {{template "childs" dict "menu" $pages.ByDate "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm}}
- {{else if eq $sortTerm "length"}}
- {{template "childs" dict "menu" $pages.ByLength "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm}}
- {{else}}
- {{template "childs" dict "menu" $pages "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm}}
- {{end}}
-{{(printf "%s>" $containerstyle)|safeHTML}}
+ {{- if eq $sortTerm "weight" }}
+ {{- template "childs" dict "menu" $pages.ByWeight "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm }}
+ {{- else if or (eq $sortTerm "name") (eq $sortTerm "title") }}
+ {{- template "childs" dict "menu" $pages.ByTitle "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm }}
+ {{- else if eq $sortTerm "publishdate" }}
+ {{- template "childs" dict "menu" $pages.ByPublishDate "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm }}
+ {{- else if eq $sortTerm "date" }}
+ {{- template "childs" dict "menu" $pages.ByDate "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm }}
+ {{- else if eq $sortTerm "length" }}
+ {{- template "childs" dict "menu" $pages.ByLength "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm }}
+ {{- else }}
+ {{- template "childs" dict "menu" $pages "containerstyle" $containerstyle "style" $style "showhidden" $showhidden "count" 1 "depth" $depth "pages" .Site.Pages "description" $withDescription "sortTerm" $sortTerm }}
+ {{- end }}
+{{ (printf "%s>" $containerstyle)|safeHTML }}
-{{ define "childs" }}
- {{ range .menu }}
- {{ $hidden := and (or (.Params.hidden) (eq .Title "")) (not $.showhidden) }}
- {{ if not $hidden }}
- {{if not .IsHome}}
- {{if hasPrefix $.style "h"}}
- {{$num := sub ( int (trim $.style "h") ) 1 }}
- {{$numn := add $num $.count }}
+{{- define "childs" }}
+ {{- range .menu }}
+ {{- $hidden := and (or (.Params.hidden) (eq .Title "")) (not $.showhidden) }}
+ {{- if not $hidden }}
+ {{- if not .IsHome }}
+ {{- if hasPrefix $.style "h" }}
+ {{- $num := sub ( int (trim $.style "h") ) 1 }}
+ {{- $numn := add $num $.count }}
-{{(printf "
{{.Description}}
+ {{- if $.description }} + {{- if .Description }} +{{ .Description }}
{{else}} -{{.Summary}}
- {{end}} - {{end}} - {{end}} - {{ if lt $.count $.depth}} +{{ .Summary }}
+ {{- end }} + {{- end }} + {{- end }} + {{- if lt $.count $.depth }} - {{if eq $.style "li"}} -{{(printf "<%s>" $.containerstyle)|safeHTML}} - {{end}} + {{- if eq $.style "li" }} +{{- (printf "<%s>" $.containerstyle)|safeHTML }} + {{- end }} - {{ if .Sections}} - {{ .Scratch.Set "pages" (.Pages | union .Sections) }} - {{else}} - {{ .Scratch.Set "pages" .Pages }} - {{end}} + {{- if .Sections }} + {{- .Scratch.Set "pages" (.Pages | union .Sections) }} + {{- else }} + {{- .Scratch.Set "pages" .Pages }} + {{- end }} - {{ $pages := (.Scratch.Get "pages") }} + {{- $pages := (.Scratch.Get "pages") }} - {{if eq $.sortTerm "weight"}} - {{template "childs" dict "menu" $pages.ByWeight "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm}} - {{else if or (eq $.sortTerm "name") (eq $.sortTerm "title")}} - {{template "childs" dict "menu" $pages.ByTitle "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm}} - {{else if eq $.sortTerm "publishdate"}} - {{template "childs" dict "menu" $pages.ByPublishDate "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm}} - {{else if eq $.sortTerm "date"}} - {{template "childs" dict "menu" $pages.ByDate "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm}} - {{else if eq $.sortTerm "length"}} - {{template "childs" dict "menu" $pages.ByLength "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm}} - {{else}} - {{template "childs" dict "menu" $pages "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm}} - {{end}} + {{- if eq $.sortTerm "weight" }} + {{- template "childs" dict "menu" $pages.ByWeight "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm }} + {{- else if or (eq $.sortTerm "name") (eq $.sortTerm "title") }} + {{- template "childs" dict "menu" $pages.ByTitle "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm }} + {{- else if eq $.sortTerm "publishdate" }} + {{- template "childs" dict "menu" $pages.ByPublishDate "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm }} + {{- else if eq $.sortTerm "date" }} + {{- template "childs" dict "menu" $pages.ByDate "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm }} + {{- else if eq $.sortTerm "length" }} + {{- template "childs" dict "menu" $pages.ByLength "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm }} + {{- else }} + {{- template "childs" dict "menu" $pages "containerstyle" $.containerstyle "style" $.style "showhidden" $.showhidden "count" (add $.count 1) "depth" $.depth "pages" $.pages "description" $.description "sortTerm" $.sortTerm }} + {{- end }} - {{if eq $.style "li"}} -{{(printf "%s>" $.containerstyle)|safeHTML}} - {{end}} - {{end}} - {{end}} - {{end}} -{{end}} \ No newline at end of file + {{- if eq $.style "li" }} +{{- (printf "%s>" $.containerstyle)|safeHTML }} + {{- end }} + {{- end }} + {{- end }} + {{- end }} +{{- end }} \ No newline at end of file diff --git a/layouts/shortcodes/expand.html b/layouts/shortcodes/expand.html index cb792c4a22..4de845a773 100644 --- a/layouts/shortcodes/expand.html +++ b/layouts/shortcodes/expand.html @@ -1,7 +1,7 @@ -{{ $_hugo_config := `{ "version": 1 }` }} -{{ $title := .Get 0 | default (T "Expand-title") }} -{{ $content := .Inner | safeHTML }} -{{ $expanded := eq (.Get 1) "true" }} +{{- $_hugo_config := `{ "version": 1 }` }} +{{- $title := .Get 0 | default (T "Expand-title") }} +{{- $content := .Inner | safeHTML }} +{{- $expanded := eq (.Get 1) "true" }}