Provides access to Get query parameters from the URL.
{{ request.params }}
If the current URL contains a query parameter such as ?foo=bar, the following code:
?foo=bar
{{ request.params["foo"] }}
Would return the valuebar.
bar