Skip to content

Commit e94530f

Browse files
committed
Fix links
1 parent b83c05f commit e94530f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

theme/templates/partials/header.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<nav class="navbar has-shadow is-spaced" role="navigation" aria-label="main navigation">
3939

4040
<div class="navbar-brand">
41-
<a class="navbar-item pr-6" style="font-size: 1.2rem; font-weight: 500;" href="/">
41+
<a class="navbar-item pr-6" style="font-size: 1.2rem; font-weight: 500;" href="{{SITEURL}}">
4242
{{ SITENAME }}
4343
</a>
4444
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbar">
@@ -53,19 +53,19 @@
5353

5454
<div class="navbar-start">
5555
{% for p in pages|sort(attribute='menu_order') %}
56-
<a href="{{ SITEURL }}/{{ p.url }}" class="navbar-item" style="font-weight: 420;">{{ p.menu_title }}</a>
56+
<a href="{{SITEURL}}/{{ p.url }}" class="navbar-item" style="font-weight: 420;">{{ p.menu_title }}</a>
5757
{% endfor %}
5858
</div>
5959

6060
<div class="navbar-end">
6161
<div class="navbar-item px-4">
6262
<a href="mailto:{{ SOCIAL['mail'] }}">
63-
<img src="{{ THEME_STATIC_DIR }}/images/social/envelope.svg" alt="Email" style="margin-top: 7px; height: 1rem;" />
63+
<img src="{{SITEURL}}/{{THEME_STATIC_DIR}}/images/social/envelope.svg" alt="Email" style="margin-top: 7px; height: 1rem;" />
6464
</a>
6565
</div>
6666
<div class="navbar-item px-4 pr-6">
6767
<a href="{{ SOCIAL['bluesky'] }}" target="_blank" rel="noopener noreferrer">
68-
<img src="{{ THEME_STATIC_DIR }}/images/social/bluesky.svg" alt="Bluesky" style="margin-top: 7px; height: 1rem;" />
68+
<img src="{{SITEURL}}/{{THEME_STATIC_DIR}}/images/social/bluesky.svg" alt="Bluesky" style="margin-top: 7px; height: 1rem;" />
6969
</a>
7070
</div>
7171
</div>

0 commit comments

Comments
 (0)