Skip to content

Commit 4f4c2d3

Browse files
committed
updated info to indicate pending chnageover
1 parent 4ade5d0 commit 4f4c2d3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/app/info/info.component.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<div class='info'>
2-
32
<article>
43
<h1>Welcome to Ben's github pages</h1>
54
<p>
@@ -15,6 +14,9 @@ <h1>Welcome to Ben's github pages</h1>
1514
and keep my abilities from degrading. Second to show off some cool stuff that I have found.
1615
</p>
1716

18-
17+
<p>
18+
Presently these pages are being rewritten with <a href="https://hexdocs.pm/lustre_ssg/lustre/ssg.html">lustre_ssg</a> to resolve major issues with hosting single page applications on github pages.
19+
Progress may bee seen <a href="https://github.com/benev0/new-pages">here</a>.
20+
</p>
1921
</article>
2022
</div>

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<script>
55
let storageResult = localStorage.getItem('DarkModePreferred');
6-
var preferDark = JSON.parse(storageResult ? storageResult : 'null');
6+
var preferDark = JSON.parse(storageResult ?? 'null');
77
if (preferDark === null) {
88
preferDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
99
}

0 commit comments

Comments
 (0)