erynwells.me/layouts/partials/flag_is_enabled.html

11 lines
311 B
HTML

{{ $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 }}