-
Dear Archie, I have been wondering what would be the best way of having a favicon to the Archie theme. I had tried to add something like the following to the
I have also noticed this piece of code in the
I would appreciate any help. Many thanks in advance, George. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey, sorry for the late reply, You can add a favicon by adding the path to favicon in the config.toml file under Line 12 in 04e48d9 baseURL = "https://athul.github.io/archie/"
languageCode = "en-us"
title = "Archie"
theme = "archie"
copyright = "© Athul"
pygmentsstyle = "monokai"
pygmentscodefences = true
pygmentscodefencesguesssyntax = true
paginate = 4
[params]
favicon = "https://img.icons8.com/officel/16/000000/chevron-right.png"
og_image = "https://raw.githubusercontent.com/athul/archie/master/images/archie-dark.png"
# mode = "auto"
mode = "toggle"
useCDN = true
subtitle = "Minimal and Clean [blog theme for Hugo](https://github.com/athul/archie)"
description = "Archie is a Minimal and Clean theme for Hugo"
[[params.social]]
name = "GitHub"
icon = "github"
url = "https://github.com/athul/archie"
... |
Beta Was this translation helpful? Give feedback.
Hey, sorry for the late reply, You can add a favicon by adding the path to favicon in the config.toml file under
[params]
. Here is an example of the demo site's config.toml filearchie/config.toml
Line 12 in 04e48d9