We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
_config.yml
Currently, the only way to set a custom favicon is to overwrite the head.html include, like this:
head.html
<head> <!-- The rest of _include/head.html ... --> <!-- Add a favicon --> <link rel="shortcut icon" href="/my-favicon.ico" type="image/x-icon" /> </head>
It should be pretty easy to just add a favicon if the variable is set:
<head> <!-- The rest of _include/head.html ... --> <!-- Add a favicon if present --> {% if site.favicon %} <link rel="shortcut icon" href="{{ site.favicon }}" type="image/x-icon" /> {% endif %} </head>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the only way to set a custom favicon is to overwrite the
head.html
include, like this:It should be pretty easy to just add a favicon if the variable is set:
The text was updated successfully, but these errors were encountered: