I am creating a static site using the Hugo static site generator with the Novela theme. I have a favicon which I have added to the static folder of the website. I have also updated the themes/layouts/partials/header.html to include the required links but I'm still seeing the logo from the default instead of the one I have added.
header.html:
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<Section class="section">
<div class="nav-container">
<a class="logo-link" href="/">
{{ partial "icons/ui/logo.html" . }}
<span class="header-hidden">Navigate back to the homepage</span>
</a>
<div class="nav-controls">
<button id="copyButton" class="icon-wrapper">
{{ partial "icons/ui/link.html" . }}
<div id="toolTip" class="tool-tip " >
copied
</div>
<input id="copyText" style="opacity: 0;" type="text" class="tool-tip " />
</button>
<button id="themeColorButton" class="icon-wrapper">
<div id="sunRays" class="sun-rays"></div>
<div id="moonOrSun" class="moon-or-sun"></div>
<div id="moonMask" class="moon-mask"></div>
</button>
</div>
</div>
</Section>
{{ $script := resources.Get "js/toggleLogos.js" }}
<script src="{{ $script.RelPermalink }}"></script>
{{ $script := resources.Get "js/toggleColors.js" }}
<script src="{{ $script.RelPermalink }}"></script>
{{ $script := resources.Get "js/copyUrl.js" }}
<script src="{{ $script.RelPermalink }}"></script>