「特定のページ」というのは、「ドメイン/pages/ハンドル」といったPagesで作成したページのことでしょうか?
以下のような分岐で非表示にできると思います。
{% if page.handle != 'ハンドル名' %}
{% section 'header' %}
{% endif %}
{% if page.handle != 'ハンドル名' %}
{% section 'footer' %}
{% endif %}
もしくは
{% unless page.handle == 'ハンドル名' %}
{% section 'header' %}
{% endunless %}
{% unless page.handle == 'ハンドル名' %}
{% section 'footer' %}
{% endunless %}