I need your help for a quite simple question.
I have the following code for the baseof layout;
<body id="page"{{ if ne .IsHome true }} class="sidebar"{{ end }}>
{{ block "header" . -}}{{ end -}}
{{ block "main" . -}}{{ end -}}
{{ block "footer" . -}}{{ end }}
</body>
In addition of the .IsHome exclusion I would like to add the same exclusion for the 404.html page.
How to do that ?
Thank you