Merge pull request #18 from fancyfarfalle/master

Add support for custom favicon
This commit is contained in:
David Darnes 2018-01-18 09:13:46 +00:00 committed by GitHub
commit 8ecd69056b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 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,14 @@
<title>{{ page.title }} - {{ site.title }}</title>
{% endif %}
<link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
<link rel="shortcut icon" href="{{ site.logo }}">
<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>