Skip to content

Commit b83c05f

Browse files
committed
Fix links
1 parent bb06d48 commit b83c05f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

theme/templates/base.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
</title>
77
<meta charset="utf-8" />
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
9-
<link rel="stylesheet" href="{{ THEME_STATIC_DIR }}/css/bulma.min.css" />
10-
<link rel="stylesheet" href="{{ THEME_STATIC_DIR }}/css/custom.css" />
11-
<link rel="icon" href="{{ THEME_STATIC_DIR }}/images/favicon.ico" />
9+
<link rel="stylesheet" href="{{SITEURL}}/{{THEME_STATIC_DIR}}/css/bulma.min.css" />
10+
<link rel="stylesheet" href="{{SITEURL}}/{{THEME_STATIC_DIR}}/css/custom.css" />
11+
<link rel="icon" href="{{SITEURL}}/{{THEME_STATIC_DIR}}/images/favicon.ico" />
1212
</head>
1313
<body>
1414
{% include "partials/header.html" %}

theme/templates/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% block content %}
66
<section class="hero mb-5 py-0" style="
77
position: relative;
8-
background-image: url({{THEME_STATIC_DIR}}/images/header/munich02-small.jpg);
8+
background-image: url({{SITEURL}}/{{THEME_STATIC_DIR}}/images/header/munich02-small.jpg);
99
width: 100%;
1010
background-position: center;
1111
background-size: cover;
@@ -35,7 +35,7 @@
3535
</p>
3636
</div>
3737
<div class="column is-narrow">
38-
<img src="{{THEME_STATIC_DIR}}/images/logo/satml-logo.svg" alt="SaTML Logo" style="width: 130px; padding-top: 5px;" />
38+
<img src="{{SITEURL}}/{{THEME_STATIC_DIR}}/images/logo/satml-logo.svg" alt="SaTML Logo" style="width: 130px; padding-top: 5px;" />
3939
</div>
4040
</div>
4141
<p class="is-size-2 has-text-weight-medium has-text-white" style="margin-top: -0.5rem;">

0 commit comments

Comments
 (0)