Skip to content

Commit

Permalink
Fix in relative URL for site icon
Browse files Browse the repository at this point in the history
  • Loading branch information
mcoonen committed Aug 12, 2024
1 parent 15163e1 commit 1c443d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ baseurl: "/" # the subpath of your site, e.g. /blog
permalink: ':title:output_ext'
url: "https://maastrichtu-library.github.io/digitalheritage-tech" # the base hostname & protocol for your site, e.g. http://example.com
logo: "/assets/img/branding/UM-logo-light.svg"
logo-icon: "./assets/img/branding/UM-symbol-dark.png"
logo-icon-SEO: "./assets/img/branding/UM-symbol-light.png" # must be a non SVG file
logo-icon: "/assets/img/branding/UM-symbol-dark.png"
logo-icon-SEO: "/assets/img/branding/UM-symbol-light.png" # must be a non SVG file

# Night/Dark mode
# Default mode is "auto", "auto" is for auto nightshift
Expand Down
2 changes: 1 addition & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="footer-wrapper">
<div class="logo-symbol">
<a class="logo-link" title="{{ site.title }}" href="{{ relativebase }}">
<img class="logo" id="logo" src="{{ site.logo-icon }}" alt="{{ site.title }}">
<img class="logo" id="logo" src="./{{ site.logo-icon }}" alt="{{ site.title }}">
</a>
</div>
<div class="copyright">
Expand Down

0 comments on commit 1c443d5

Please sign in to comment.