Example config: ``` parameters: block: param1: String ``` Template: ``` {% if defined block %} {{ block.param1 }} {% endif %} ``` Block is not defined and thus, the parameter is not displayed.