diff options
author | Vanja Cosic <1070957+vanjacosic@users.noreply.github.com> | 2023-04-27 14:58:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-27 14:58:25 +0200 |
commit | 37d76970b9cc2eeecba7b981864824f2d3fbdfe5 (patch) | |
tree | 4732498baeec26335f5eee0b3a7abdbe10e7a871 | |
parent | b63e2a7f3a1f3f47b10ac5a0a84be9f3321ae280 (diff) | |
download | cph-rust-website-37d76970b9cc2eeecba7b981864824f2d3fbdfe5.zip |
Fix asset paths
-rw-r--r-- | templates/base.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html index 14f1c8e..3c435c5 100644 --- a/templates/base.html +++ b/templates/base.html @@ -7,14 +7,14 @@ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='0.9em' font-size='90'>🦀</text></svg>" /> <link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600&display=swap" rel="stylesheet"> - <link rel="stylesheet" href="./styles.css"> + <link rel="stylesheet" href="../styles.css"> </head> <body> {% block header %} <header> <nav> - <img class="logo" src="cph-rs-ferris.png"> + <img class="logo" src="../cph-rs-ferris.png"> <a href="./"> <h1>Copenhagen Rust Community</h1> </a> @@ -39,4 +39,4 @@ {% endblock script %} </body> -</html>
\ No newline at end of file +</html> |