erynwells.me/layouts/partials/flag_is_enabled.html

12 lines
311 B
HTML
Raw Normal View History

{{ $result := false }}
{{ with $flag := index . site.Params.flags }}
{{ if hugo.IsProduction }}
{{ $result = in (slice "yes" "true" "production" "development") $flag }}
{{ else }}
{{ $result = in (slice "yes" "true" "development") $flag }}
{{ end }}
{{ end }}
{{ return $result }}