Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marketempower/axiom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJhaura Wachsman <jw@jhaurawachsman.com>2020-07-10 03:09:07 +0300
committerJhaura Wachsman <jw@jhaurawachsman.com>2020-07-10 03:09:07 +0300
commita0da35bc1bf20f1cec3760ce7772f1636ca21727 (patch)
tree76693f7a09a7602344ebced40050c767808ff3f7
parent9edf2506fb87e72162cd6fb3d304e386657e31b4 (diff)
Remove colon on variable definition
-rw-r--r--layouts/shortcodes/svg.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/shortcodes/svg.html b/layouts/shortcodes/svg.html
index 656a68c..838a55e 100644
--- a/layouts/shortcodes/svg.html
+++ b/layouts/shortcodes/svg.html
@@ -17,5 +17,5 @@
{{- errorf "Missing required 'name'. Shortcode: 'svg'." -}}
{{- end }}
{{- $name = printf "svg/%s.svg" $name -}}
-{{- $class := $class | default "fill-current" -}}
+{{- $class = $class | default "fill-current" -}}
{{- partial $name (dict "class" $class "style" $style "viewbox" $viewbox) -}}