diff --git a/web/project-website/content/bcon23/_index.md b/web/project-website/content/bcon23/_index.md new file mode 100644 index 00000000..d307cd0d --- /dev/null +++ b/web/project-website/content/bcon23/_index.md @@ -0,0 +1,39 @@ +--- +title: Blender Conference 2023 +weight: 100 + +geekdocAnchor: false +geekdocBreadcrumb: false +geekdocCollapseSection: true +geekdocHidden: true +geekdocNav: false +--- + +{{< columns >}} + +# Free & Open Source
Render Management + +Here you can download the files for the [**Blender Conference Hands-On Class on Flamenco v3.3**][schedule]. + +[schedule]: https://conference.blender.org/2023/presentations/1862/ + +## 1. Download the blend file + +{{< button class="btn-secondary" size="large" href="/downloads/flamenco-bcon23-demo.blend" >}}Download BCON23 Demo Blend File{{< /button >}} + +

+ +## 2. Download the Flamenco package + + + + + + +
PlatformFile
Windows {{< flamenco/downloadLink version="3.3-bcon23" os="windows" ext="zip" >}}
Linux {{< flamenco/downloadLink version="3.3-bcon23" os="linux" >}}
macOS {{< flamenco/downloadLink version="3.3-bcon23" os="macos" >}}
+ +<---> + +![BCon Banner](bcon-banner.webp) + +{{}} diff --git a/web/project-website/content/bcon23/bcon-banner.webp b/web/project-website/content/bcon23/bcon-banner.webp new file mode 100644 index 00000000..29cc8d49 Binary files /dev/null and b/web/project-website/content/bcon23/bcon-banner.webp differ diff --git a/web/project-website/layouts/shortcodes/flamenco/downloadLink.html b/web/project-website/layouts/shortcodes/flamenco/downloadLink.html index 8cfa149e..46988cfe 100644 --- a/web/project-website/layouts/shortcodes/flamenco/downloadLink.html +++ b/web/project-website/layouts/shortcodes/flamenco/downloadLink.html @@ -1,5 +1,6 @@ {{- $os := .Get "os" | default "linux" -}} {{- $arch := .Get "arch" | default "amd64" -}} {{- $extension := .Get "ext" | default "tar.gz" -}} -{{- $filename := printf "flamenco-%s-%s-%s.%s" $.Site.Data.flamenco.latestVersion $os $arch $extension -}} +{{- $version := .Get "version" | default $.Site.Data.flamenco.latestVersion -}} +{{- $filename := printf "flamenco-%s-%s-%s.%s" $version $os $arch $extension -}} {{ $filename }}