File tree 2 files changed +14
-19
lines changed
2 files changed +14
-19
lines changed Original file line number Diff line number Diff line change 1
1
@ REM Serve the site on localhost using python's built in server.
2
2
@ echo off
3
3
pushd deploy
4
- start " local server" py -m http.server
4
+ start " local server" python -m http.server
5
5
start chrome.exe " http://localhost:8000/index.html"
6
6
popd
Original file line number Diff line number Diff line change 44
44
<link rel="stylesheet" href="/dwarf.css">
45
45
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
46
46
</head>
47
+
48
+ <body>
47
49
<script>
48
-
50
+ var theme = localStorage.getItem('theme') || 'light';
51
+
52
+ // window.onload = function() {
53
+ document.querySelector('body').setAttribute('data-theme', theme);
54
+ // }
55
+
49
56
function toggleNight() {
50
- document.body.classList.toggle("night" );
51
- const val = document.body.classList.contains("night") ;
52
- localStorage.setItem('theme', val );
53
- console.log(val);
57
+ console.log('toggle' );
58
+ theme = (theme == 'light')? 'night' : 'light' ;
59
+ localStorage.setItem('theme', theme );
60
+ document.querySelector('body').setAttribute('data-theme', theme);
54
61
}
55
-
56
- window.onload = function() {
57
- const saved = localStorage.getItem('theme');
58
- if (saved === 'true') {
59
- document.body.classList.add('night');
60
- }
61
- full_path = location.href.split('#')[0];
62
- Array.from(document.getElementById("nav-links").getElementsByTagName("a"))
63
- .filter(l => l.href.split("#")[0] == full_path)
64
- .forEach(l => l.className += " current");
65
- }
66
- </script>
67
- <body>
68
62
63
+ </script>
69
64
<div class="wrapper">
70
65
<main class="page-content" aria-label="Content">
71
66
You can’t perform that action at this time.
0 commit comments