
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
376 B
HTML
13 lines
376 B
HTML
{{ $img := "" }}
|
|
|
|
{{ with $source := ($.Resources.ByType "image").GetMatch "{*feature*,*cover*,*thumbnail*}" }}
|
|
{{ $featured := .Fill (printf "1200x630 %s" (default "Smart" .Params.anchor)) }}
|
|
{{ $img = $featured.Permalink }}
|
|
{{ else }}
|
|
{{ with default $.Site.Params.images $.Params.images }}
|
|
{{ $img = index . 0 | absURL }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ return $img }}
|