Skip to content

Commit

Permalink
Fix relative URL paths in head.html and default.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Deep0Thinking committed Jan 15, 2024
1 parent 3941402 commit 0b41701
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
<link rel="stylesheet" href="{{ "assets/css/style.css" | relative_url }}">

{%- if jekyll.environment == 'production' and site.google_analytics -%}
{%- include google-analytics.html -%}
Expand Down
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@

</body>

<script src="/assets/js/custom-styles.js"></script>
<script src="{{ "assets/js/custom-styles.js" | relative_url }}"></script>

</html>

0 comments on commit 0b41701

Please sign in to comment.