collections.Querify
Syntax
collections.Querify [VALUE...]
Returns
string
Alias
querify
Specify the key-value pairs as individual arguments, or as a slice. The following are equivalent:
{{ collections.Querify "a" 1 "b" 2 }}
{{ collections.Querify (slice "a" 1 "b" 2) }}
To append a query string to a URL:
{{ $qs := collections.Querify "a" 1 "b" 2 }}
{{ $href := printf "https://example.org?%s" $qs }}
<a href="{{ $href }}">Link</a>
Hugo renders this to:
<a href="https://example.org?a=1&b=2">Link</a>