Skip to content

Commit

Permalink
Update base.liquid
Browse files Browse the repository at this point in the history
  • Loading branch information
csaben authored Sep 22, 2023
1 parent d453e37 commit 6b61705
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/_includes/base.liquid
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<!DOCTYPE html>
<html lang="en">
{% include "head.liquid" %}
<body class="dark-mode">
<body>
<header>{% include "nav.liquid" %}</header>
<main>{{ content }}</main>
<footer>{% include "footer.liquid" %}</footer>
<script>
document.body.classList.add('dark-mode');
</script>
</body>
</html>

0 comments on commit 6b61705

Please sign in to comment.