Skip to content

Commit

Permalink
Use relative urls for assets
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanbruegge committed Mar 13, 2020
1 parent aafff0a commit 9ab6655
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ input[type='range'] {
}

#past-months-container {
background-image: url('/static/ULP_Toolkit_page_1.svg');
background-image: url('./ULP_Toolkit_page_1.svg');
}

#next-months-container {
background-image: url('/static/ULP_Toolkit_page_2.svg');
background-image: url('./ULP_Toolkit_page_2.svg');
}

#find-future-container {
background-image: url('/static/ULP_Toolkit_page_3.svg');
background-image: url('./ULP_Toolkit_page_3.svg');
}

#vision {
Expand Down
2 changes: 1 addition & 1 deletion template/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<title>My Retro</title>
<link href="/static/styles.css" rel="stylesheet" />
<link href="../static/styles.css" rel="stylesheet" />
</head>
<body>
{{#pastMonths}}
Expand Down

0 comments on commit 9ab6655

Please sign in to comment.