summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorVanja Cosic <1070957+vanjacosic@users.noreply.github.com>2023-10-26 17:45:01 +0200
committerVanja Cosic <1070957+vanjacosic@users.noreply.github.com>2023-10-26 17:45:01 +0200
commite642d1628ce3822e86f0731641034b88ad6e0948 (patch)
treec8399c5d72b8b9a6f7673e7a82ba745272dd76c7 /templates/base.html
parent2316c908a66d44aa0f115777236b416166a9d3d5 (diff)
downloadcph-rust-website-e642d1628ce3822e86f0731641034b88ad6e0948.zip
Initial implementation of event pages
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html
index 3c435c5..1e1f2d6 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>
@@ -22,7 +22,7 @@
</header>
{% endblock header %}
- <main {% if page %}class="page-{{page.slug}}"{% endif %}>
+ <main {% if page %}class="page-{{page.slug}}"{% endif %} {% if section %}class="section-{{section.title | lower}}"{% endif %}>
{% block sidebar %}
{% endblock sidebar %}
<div class="content">