Deploying on Vercel makes header and footer from baseof go away

Hi.
This is my repo: GitHub - itymarcel/2021portfolio

I’m new to hugo and just figuring it out. The repo runs successfully on my local machine, but as soon as I’m deploying it to Vercel, the header and footer, added in the baseof.html, are gone.

{{ block "finjiheader" . }}{{ end }}
{{ block "main" . }}{{ end }}
{{ block "finjifooter" . }}{{ end }}

This is in the baseof.html and vercel just renders the main. ( https://finji.vercel.app/ )

Thanks for your help!

partials do not need define and block. We can call partials with the partial statement.

I have no idea about the difference of your local machine and vercel. But you can delete public under Git control. Please add public to .gitignore. It may be the reason for this.

1 Like

The way I included the partial was the problem.
{{ partial “finjifooter.html” . }} helped.

Thank you!

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.