
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
19 lines
635 B
HTML
19 lines
635 B
HTML
<!-- prettier-ignore-start -->
|
|
{{ if not (.Page.Scratch.Get "katex") }}
|
|
<!-- Include katex only first time -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ index (index .Site.Data.assets "katex.css") "src" | relURL }}"
|
|
/>
|
|
<script defer src="{{ index (index .Site.Data.assets "katex.js") "src" | relURL }}"></script>
|
|
{{ .Page.Scratch.Set "katex" true }}
|
|
{{ end }}
|
|
<!-- prettier-ignore-end -->
|
|
|
|
<span class="gdoc-katex {{ with .Get "class" }}{{ . }}{{ end }}">
|
|
{{ cond (in .Params "display") "\\[" "\\(" -}}
|
|
{{- trim .Inner "\n" -}}
|
|
{{- cond (in .Params "display") "\\]" "\\)" -}}
|
|
</span>
|
|
{{- /* Drop trailing newlines */ -}}
|