Provides access to Get query parameters from the URL.

Usage

{{ request.params }}

Example

If the current URL contains a query parameter such as ?foo=bar, the following code:

{{ request.params["foo"] }}

Would return the valuebar.