So I want to display email newsletter box that will be displayed in footer unless the page template is home or domains. I am struggling to come up with correct syntax for it, this one does not work:
{% if (page.template != 'home') or (page.template != 'domains') %}
{% if page.template != 'home' %}
{% if page.template != 'domains' %}
### display something when the page is not home or domains
{% else %}
{% endif %}
{% else %}
{% endif %}