Add support for custom favicon

This commit is contained in:
Thayer Luscian 2018-01-17 19:49:52 -05:00
parent 6205b00a48
commit 9a03c1512f
2 changed files with 6 additions and 1 deletions

View File

@ -60,6 +60,7 @@ defaults:
encoding: utf-8 # Make sure the encoding is right
title: "Garth" # Site name or title
logo: "/assets/logo.svg" # Site logo
# favicon: "/favicon.ico" # Uncomment to add custom favicon, or leave as is to use site logo
description: "A stupidly simple theme for Jekyll, using the official Jekyll theme implementation" # Site description and default description
url: "https://garth.darn.es" # Site url
baseurl: ""

View File

@ -9,8 +9,12 @@
<title>{{ page.title }} - {{ site.title }}</title>
{% endif %}
<link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
<link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
{% if site.favicon %}
<link rel="shortcut icon" href="{{ site.favicon }}">
{% else %}
<link rel="shortcut icon" href="{{ site.logo }}">
{% endif %}
</head>
<body>