
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
15 lines
403 B
HTML
15 lines
403 B
HTML
{{ $isPage := or (and (ne .Type "posts") (in "section page" .Kind )) (and (eq .Type "posts") (eq .Kind "page")) }}
|
|
{{ $description := "" }}
|
|
|
|
{{ if .Description }}
|
|
{{ $description = .Description }}
|
|
{{ else }}
|
|
{{ if $isPage }}
|
|
{{ $description = .Summary }}
|
|
{{ else if .Site.Params.description }}
|
|
{{ $description = .Site.Params.description }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ return $description }}
|