
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
14 lines
425 B
HTML
14 lines
425 B
HTML
{{- $format := default "html" (.Get "format") }}
|
|
{{- $tocLevels := default (default 6 .Site.Params.GeekdocToC) .Page.Params.GeekdocToC }}
|
|
|
|
{{- if and $tocLevels .Page.TableOfContents -}}
|
|
{{- if not (eq ($format | lower) "raw") -}}
|
|
<div class="gdoc-toc gdoc-toc__level--{{ $tocLevels }}">
|
|
{{ .Page.TableOfContents }}
|
|
<hr />
|
|
</div>
|
|
{{- else -}}
|
|
{{ .Page.TableOfContents }}
|
|
{{- end -}}
|
|
{{- end -}}
|