Skip to content
Snippets Groups Projects
Unverified Commit 764dbb35 authored by Tyler's avatar Tyler Committed by GitHub
Browse files

Document how to use `custom_head` to add a custom favicon (#814)




Co-authored-by: default avatarMatt Wang <matt@matthewwang.me>
parent 7a3c3705
No related branches found
No related tags found
No related merge requests found
...@@ -147,6 +147,13 @@ This content appears at the bottom of every page's main content. More info for t ...@@ -147,6 +147,13 @@ This content appears at the bottom of every page's main content. More info for t
Any HTML added to this file will be inserted before the closing `<head>` tag. This might include additional `<meta>`, `<link>`, or `<script>` tags. Any HTML added to this file will be inserted before the closing `<head>` tag. This might include additional `<meta>`, `<link>`, or `<script>` tags.
#### Example
To add a custom favicon, create `_includes/head_custom.html` and add:
```html
<link rel="shortcut icon" type="image/png" href="{{site.baseurl}}/path/to/your/favicon.png">
```
### Custom Header ### Custom Header
`_includes/header_custom.html` `_includes/header_custom.html`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment