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

Co-authored-by: Matt Wang <matt@matthewwang.me>
This commit is contained in:
Tyler 2022-07-05 22:44:21 -06:00 committed by GitHub
parent 7a3c37052f
commit 764dbb35a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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`