0740 Add Favicon to Hugo


favicon

sample heading

Add favicon to Hugo based website

    {{/* The favicon works as a relative link for the index.html at root    */}}
    {{/*  but not for any other link on the menu or any content at a lower level  */}}
    {{/*  that's why the absURL is used  */}}
    {{/*  <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">  */}}

    {{ $fav := "favicon.ico" | absURL }}
    <link rel="shortcut icon" href="{{ $fav }}" type="image/x-icon">


See Also

Breadcrumb