
The flamenco.io website moves to flamenco.blender.org! This commit updates the Makefile as follows: - Rename 'site' to 'project-website', so the new command to deploy is 'make project-website' - Move the website directory from 'flamenco-io-site' to 'project-website' - Update the rsync command do reflect the new deployment destination
13 lines
366 B
HTML
13 lines
366 B
HTML
{{ if .Parent }}
|
|
{{ $name := .Get 0 }}
|
|
{{ $group := printf "tabs-%s" (.Parent.Get 0) }}
|
|
|
|
{{ if not (.Parent.Scratch.Get $group) }}
|
|
{{ .Parent.Scratch.Set $group slice }}
|
|
{{ end }}
|
|
|
|
{{ .Parent.Scratch.Add $group (dict "Name" $name "Content" .Inner) }}
|
|
{{ else }}
|
|
{{ errorf "%q: 'tab' shortcode must be inside 'tabs' shortcode" .Page.Path }}
|
|
{{ end }}
|