Skip to content

Commit d25b7c9

Browse files
committed
fix: urls
Signed-off-by: simonsan <[email protected]>
1 parent bc36ef2 commit d25b7c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
88
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
99
{% block favicon %}
10-
<link rel="icon" type="image/svg" href="./assets/rustic.svg">
10+
<link rel="icon" type="image/svg" href="{{ get_url(path='assets/rustic.svg') }}">
1111
{% endblock favicon %}
1212
{% include "_variables.html" %}
1313
{% block fonts %}
1414
<link rel="stylesheet" href="{{ get_url(path='fonts.css') }}">
1515
{% endblock fonts %}
1616
<link rel="stylesheet" href="{{ get_url(path='rustic.css') }}">
17-
<script async defer src="./js/buttons.js"></script>
17+
<script async defer src="{{ get_url(path='js/buttons.js') }}"></script>
1818
{% block head %}
1919
{% endblock head %}
2020
</head>
@@ -32,7 +32,7 @@
3232
{% block hero %}
3333
<section class="hero">
3434
<picture class="hero-image">
35-
<img src="{{ get_url(path='./assets/rustic.svg') }}">
35+
<img src="{{ get_url(path='assets/rustic.svg') }}">
3636
</picture>
3737
<div class="hero-message">
3838
Backups how they should be.

0 commit comments

Comments
 (0)