-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (58 loc) · 3.17 KB
/
Copy pathindex.html
File metadata and controls
63 lines (58 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="I built Nodes to make program logic easier to draw, understand, and keep private in the browser.">
<meta name="theme-color" content="#ffffff">
<link rel="canonical" href="https://nodesss.xyz/">
<meta property="og:title" content="Nodes — a flowchart tool I wanted to use">
<meta property="og:description" content="A personal, browser-based workspace for turning program logic into clear flowcharts and usable code.">
<meta property="og:url" content="https://nodesss.xyz/">
<meta property="og:image" content="https://nodesss.xyz/og-release-1.4.png">
<title>Nodes · Your flowcharts</title>
<link rel="icon" href="data:,">
<link rel="manifest" href="site.webmanifest">
<link rel="stylesheet" href="flyon.css">
<link rel="stylesheet" href="style.css">
<script>
(() => {
const preference = localStorage.getItem("flowchart-creator-theme") || "system";
document.documentElement.dataset.themePreference = preference;
document.documentElement.dataset.theme = preference === "system" ? (matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light") : preference;
})();
</script>
</head>
<body class="library-page library-simple">
<header class="library-header simple-header">
<a class="library-brand" href="./" aria-label="Nodes home"><span class="brand-word">nodes<span class="brand-cursor">_</span></span></a>
</header>
<main class="simple-library-main">
<section class="simple-library-intro">
<div>
<h1>Your flowcharts</h1>
<p>Create, organize, and export program logic from one focused workspace.</p>
</div>
<button type="button" class="primary-create" data-new-project><span aria-hidden="true">+</span> New flowchart</button>
</section>
<section class="simple-library-tools" aria-label="Project controls">
<label class="library-search"><span aria-hidden="true">⌕</span><input id="project-search" type="search" placeholder="Search flowcharts" autocomplete="off" aria-label="Search flowcharts"></label>
<button type="button" class="secondary-action" data-import-project>Import JSON</button>
<input id="library-file-input" type="file" accept="application/json,.json" hidden>
<p id="project-count">0 flowcharts</p>
</section>
<section class="library-section" aria-labelledby="projects-title">
<h2 id="projects-title" class="sr-only">Saved flowcharts</h2>
<div id="project-grid" class="project-grid simple-project-grid" aria-live="polite"></div>
<div id="library-empty" class="library-empty simple-empty" hidden>
<div class="empty-glyph" aria-hidden="true"><i></i><i></i><i></i></div>
<h3>No flowcharts yet</h3>
<p>Create a blank canvas to get started.</p>
<button type="button" class="primary-create" data-new-project><span aria-hidden="true">+</span> New flowchart</button>
</div>
</section>
</main>
<div id="toast-region" class="toast-stack" role="region" aria-label="Notifications" aria-live="polite"></div>
<script src="home.js"></script>
</body>
</html>