{{ $UrlName := split $UrlName " " }}
{{ $NewUrlName := "" }}
{{ range after 1 $UrlName }}
{{ $NewUrlName = slice . }}
{{ end }}
This example doesn’t work, but it is the closest I can get.
For example, Here I need the code that drops “one” and keeps the rest of the slice in one string. {{ $data := slice "one" "two" "three" "four" "five" "six" }}