Skip to content

Commit

Permalink
Add custom favicon if needed (alshedivat#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
pourmand1376 authored and cverluise committed Jan 15, 2023
1 parent 00b1d7c commit 2a46fdf
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

<!-- Metadata, OpenGraph and Schema.org -->
{% include metadata.html %}

Expand All @@ -15,9 +14,11 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jwarby/jekyll-pygments-themes@master/{{ site.highlight_theme_light | append: '.css' }}" media="none" id="highlight_theme_light" />

<!-- Styles -->
{% if site.icon != empty -%}
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>{{ site.icon }}</text></svg>">
{%- endif %}
{% if site.icon.size == 1 %}
<link rel="shortcut icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>{{ site.icon }}</text></svg>">
{% elsif site.icon != blank %}
<link rel="shortcut icon" href="{{ site.icon | prepent: '/assets/img/' | relative_url}}"/>
{% endif %}
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">

Expand Down

0 comments on commit 2a46fdf

Please sign in to comment.