Merge pull request #18 from fancyfarfalle/master
Add support for custom favicon
This commit is contained in:
commit
8ecd69056b
@ -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: ""
|
||||
|
@ -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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user