hugo-theme-cybercards/layouts/shortcodes/embed.md

10 lines
321 B
Markdown

{{- $pid := or (.Get "pid") (.Get "page") -}}
{{- $this := $.Page -}}
{{- $title := .Get "title" -}}
{{- $pages := where .Site.RegularPages "Params.pageid" "eq" $pid -}}
{{- range $pages -}}
{{- if ne $title "none" -}}
### [{{ or $title .Title }}]({{ .Permalink }})
{{- end -}}
{{ .RenderShortcodes }}
{{- end -}}