Skip to content

Commit 2896148

Browse files
committed
Updates
1 parent be046f5 commit 2896148

File tree

26 files changed

+163512
-242
lines changed

26 files changed

+163512
-242
lines changed

blog/index.html

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width"><title>Crank.js | Blog</title><link rel="shortcut icon" href="/static/favicon.ico"><style>.css-1l1hcps{position:fixed;top:0;left:0;right:0;height:50px;z-index:999;gap:1em;}.css-1n0j5y9{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1em;}.css-1xmwt0h{border-bottom:1px solid var(--text-color);overflow-x:auto;background-color:inherit;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;gap:1em;}.css-1xmwt0h a{-webkit-text-decoration:none;text-decoration:none;font-weight:bold;}@media screen and (min-width: 800px){.css-1xmwt0h{padding:0 2em;}}.css-1mkiuoh{margin:0 auto;padding:2rem 0.4rem;}@media screen and (min-width: 800px){.css-1mkiuoh{margin-left:240px;padding:2rem 1rem;margin-top:50px;}}@media screen and (min-width: 1100px){.css-1mkiuoh{margin-left:20rem;padding:3rem 2rem;}}.css-1mkiuoh p{max-width:800px;}</style><link href="/static/client-SW6MAMAL.css" rel="stylesheet" type="text/css"><meta name="description" content="Read the latest articles and updates about Crank.js, exploring reactive UI patterns and framework design."><meta property="og:title" content="Crank.js | Blog"><meta property="og:url" content="https:/crank.js.org/blog"><meta property="og:description" content="Read the latest articles and updates about Crank.js, exploring reactive UI patterns and framework design."><meta property="og:type" content="website"><meta property="og:site_name" content="Crank.js"><meta property="og:image" content="https://crank.js.org/static/logo.svg"><meta name="twitter:card" content="summary"><meta name="twitter:title" content="Crank.js | Blog"><meta name="twitter:description" content="Read the latest articles and updates about Crank.js, exploring reactive UI patterns and framework design."><meta name="twitter:image" content="https://crank.js.org/static/logo.svg"></head><body><script>
2-
(() => {
3-
const colorScheme = sessionStorage.getItem("color-scheme") ||
1+
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width"><title>Crank.js | Blog</title><link rel="shortcut icon" href="/static/favicon.ico"><style>.css-1l1hcps{position:fixed;top:0;left:0;right:0;height:50px;z-index:999;gap:1em;}.css-1n0j5y9{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1em;}.css-1xmwt0h{border-bottom:1px solid var(--text-color);overflow-x:auto;background-color:inherit;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;gap:1em;}.css-1xmwt0h a{-webkit-text-decoration:none;text-decoration:none;font-weight:bold;}@media screen and (min-width: 800px){.css-1xmwt0h{padding:0 2em;}}.css-1mkiuoh{margin:0 auto;padding:2rem 0.4rem;}@media screen and (min-width: 800px){.css-1mkiuoh{margin-left:240px;padding:2rem 1rem;margin-top:50px;}}@media screen and (min-width: 1100px){.css-1mkiuoh{margin-left:20rem;padding:3rem 2rem;}}.css-1mkiuoh p{max-width:800px;}</style><link href="/static/client-SW6MAMAL.css" rel="stylesheet" type="text/css"><meta name="description" content="Read the latest articles and updates about Crank.js, exploring reactive UI patterns and framework design."><meta property="og:title" content="Crank.js | Blog"><meta property="og:url" content="https:/crank.js.org/blog"><meta property="og:description" content="Read the latest articles and updates about Crank.js, exploring reactive UI patterns and framework design."><meta property="og:type" content="website"><meta property="og:site_name" content="Crank.js"><meta property="og:image" content="https://crank.js.org/static/logo.svg"><meta name="twitter:card" content="summary"><meta name="twitter:title" content="Crank.js | Blog"><meta name="twitter:description" content="Read the latest articles and updates about Crank.js, exploring reactive UI patterns and framework design."><meta name="twitter:image" content="https://crank.js.org/static/logo.svg"></head><body><script>(() => { const colorScheme = sessionStorage.getItem("color-scheme") ||
42
(window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches
5-
? "dark" : "light"
6-
);
7-
if (colorScheme === "dark") {
8-
document.body.classList.remove("color-scheme-light");
9-
} else {
10-
document.body.classList.add("color-scheme-light");
11-
}
12-
})()</script><div id="navbar-root"><nav class="
3+
? "dark" : "light");
4+
5+
const isDark = colorScheme === "dark";
6+
const bgColor = isDark ? "#0a0e1f" : "#e7f4f5";
7+
const textColor = isDark ? "#f5f9ff" : "#0a0e1f";
8+
9+
document.documentElement.style.setProperty("--bg-color", bgColor);
10+
document.documentElement.style.setProperty("--text-color", textColor);
11+
12+
if (!isDark) {
13+
document.documentElement.classList.add("color-scheme-light");
14+
} })()</script><div id="navbar-root"><nav class="
1315
blur-background
1416
css-1l1hcps
1517
css-1xmwt0h
@@ -33,4 +35,4 @@
3335
window.__embeddedJSON__ = {};
3436
}
3537
window.__embeddedJSON__['static-urls-8'] = {"@b9g\u002Fcrank":"\u002Fstatic\u002Fcrank-YIUFVO7I.js","@b9g\u002Fcrank.js":"\u002Fstatic\u002Fcrank-YIUFVO7I.js","@b9g\u002Fcrank\u002Fasync":"\u002Fstatic\u002Fasync-E6LAES4X.js","@b9g\u002Fcrank\u002Fasync.js":"\u002Fstatic\u002Fasync-E6LAES4X.js","@b9g\u002Fcrank\u002Fcrank":"\u002Fstatic\u002Fcrank-YIUFVO7I.js","@b9g\u002Fcrank\u002Fcrank.js":"\u002Fstatic\u002Fcrank-YIUFVO7I.js","@b9g\u002Fcrank\u002Fdom":"\u002Fstatic\u002Fdom-LVRQVOWK.js","@b9g\u002Fcrank\u002Fdom.js":"\u002Fstatic\u002Fdom-LVRQVOWK.js","@b9g\u002Fcrank\u002Fevent-target":"\u002Fstatic\u002Fevent-target-K6L2AQDD.js","@b9g\u002Fcrank\u002Fevent-target.js":"\u002Fstatic\u002Fevent-target-K6L2AQDD.js","@b9g\u002Fcrank\u002Fhtml":"\u002Fstatic\u002Fhtml-2NJPH6WS.js","@b9g\u002Fcrank\u002Fhtml.js":"\u002Fstatic\u002Fhtml-2NJPH6WS.js","@b9g\u002Fcrank\u002Fjsx-dev-runtime":"\u002Fstatic\u002Fjsx-runtime-N6DDDQTF.js","@b9g\u002Fcrank\u002Fjsx-dev-runtime.js":"\u002Fstatic\u002Fjsx-runtime-N6DDDQTF.js","@b9g\u002Fcrank\u002Fjsx-runtime":"\u002Fstatic\u002Fjsx-runtime-N6DDDQTF.js","@b9g\u002Fcrank\u002Fjsx-runtime.js":"\u002Fstatic\u002Fjsx-runtime-N6DDDQTF.js","@b9g\u002Fcrank\u002Fjsx-tag":"\u002Fstatic\u002Fjsx-tag-AQMAF2KD.js","@b9g\u002Fcrank\u002Fjsx-tag.js":"\u002Fstatic\u002Fjsx-tag-AQMAF2KD.js","@b9g\u002Fcrank\u002Fstandalone":"\u002Fstatic\u002Fstandalone-Z2SC47HF.js","@b9g\u002Fcrank\u002Fstandalone.js":"\u002Fstatic\u002Fstandalone-Z2SC47HF.js","client.css":"\u002Fstatic\u002Fclient-SW6MAMAL.css"};
36-
</script><script src="/static/navbar-KNUL5W7Q.js"></script><script src="/static/code-blocks-WBHOBJQI.js"></script></body></html>
38+
</script><script src="/static/navbar-C4AOADVC.js"></script><script src="/static/code-blocks-MXAGBCMG.js"></script></body></html>

0 commit comments

Comments
 (0)