Skip to content

Commit 5e4438b

Browse files
committed
Update app icon ref to be via relative url
1 parent 1319492 commit 5e4438b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

_includes/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title class="pageTitle">{{ site.page_title }}</title>
88
<meta name="description" content="{{ site.app_description }}">
99

10-
<link rel="shortcut icon" href="{{ site.app_icon }}">
10+
<link rel="shortcut icon" href="{{ site.app_icon | relative_url }}">
1111

1212
<!-- Smart App Banner -->
1313
{% if site.enable_smart_app_banner %}

_includes/header.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
</defs>
1010
</svg>
1111
{% if page.url != '/' %}
12-
<a href="../" target="_self"><img class="headerIcon" src="{{ site.app_icon }}"></a>
12+
<a href="../" target="_self"><img class="headerIcon" src="{{ site.app_icon | relative_url }}"></a>
1313
{% else %}
14-
<img class="headerIcon" src="{{ site.app_icon }}">
14+
<img class="headerIcon" src="{{ site.app_icon | relative_url }}">
1515
{% endif %}
1616
<div class="divider"></div>
1717
</div>

_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
</clipPath>
3636
</defs>
3737
</svg>
38-
<img class="appIconLarge" src="{{ site.app_icon }}">
38+
<img class="appIconLarge" src="{{ site.app_icon | relative_url }}">
3939
</div>
4040
<div class="appNamePriceContainer">
4141
<h1 class="appName">

0 commit comments

Comments
 (0)