Mercurial
diff mrjunejune/src/blog/websocket-demystified/index.html @ 123:3f4ec30e42e0
Added blog files.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Thu, 08 Jan 2026 06:46:10 -0800 |
| parents | |
| children | c1eab8c0b0f9 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mrjunejune/src/blog/websocket-demystified/index.html Thu Jan 08 06:46:10 2026 -0800 @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Websocket Demystified</title> + {{/parts/base_head.html}} + <link rel="stylesheet" href="/tools/markdown_to_html/index.css" /> +</head> +<body> + {{/parts/header.html}} + <main> + <div id="content"></div> + </main> + {{/parts/footer.html}} + <script src="/markdown_to_html.js"></script> + <script> + fetch('/blog/websocket-demystified/index.md').then(res => res.text()).then(text => renderMarkdown(content, text)); + </script> +</body>