mirror of
https://github.com/theNewDynamic/gohugo-theme-ananke.git
synced 2025-06-08 17:22:46 +00:00
16 lines
362 B
HTML
16 lines
362 B
HTML
{{/*
|
|
IsProduction
|
|
|
|
@return false, unless the build environment is set to production via one of
|
|
the methods supported in the func/GetEnvironment partial.
|
|
*/}}
|
|
|
|
{{ $isProduction := false }}
|
|
{{ $env := partial "func/GetEnvironmentName.html" . }}
|
|
|
|
{{ if eq $env "production" }}
|
|
{{ $isProduction = true }}
|
|
{{ end }}
|
|
|
|
{{ return $isProduction }}
|