7 lines
162 B
HTML
7 lines
162 B
HTML
{{ $result := 0 }}
|
|
{{ $parts := split (index . 0) "/" }}
|
|
{{ with (index $parts (index . 1)) }}
|
|
{{ $result = trim . " \t\n" }}
|
|
{{ end }}
|
|
|
|
{{- return $result -}}
|