Skip to content

Commit

Permalink
Merge pull request #18 from fancyfarfalle/master
Browse files Browse the repository at this point in the history
Add support for custom favicon
  • Loading branch information
daviddarnes authored Jan 18, 2018
2 parents 6205b00 + e8de80b commit 8ecd690
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ""
Expand Down
10 changes: 8 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down

0 comments on commit 8ecd690

Please sign in to comment.