I don't use the blog feature. I prefer just a simple landing page, so I have singlePage = true in my config. However, I still see the header at the top with the link to the blog. Probably the most straightforward way to fix this is by adding a simple {{ if not .Site.Params.theme.singlepage }} check to this block. In fact, this is what I did for my website, and it worked just fine.
I don't use the blog feature. I prefer just a simple landing page, so I have
singlePage = true
in my config. However, I still see the header at the top with the link to the blog. Probably the most straightforward way to fix this is by adding a simple{{ if not .Site.Params.theme.singlepage }}
check to this block. In fact, this is what I did for my website, and it worked just fine.