-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (112 loc) · 4.97 KB
/
Copy pathindex.html
File metadata and controls
119 lines (112 loc) · 4.97 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Development Hub | Byte-Sized Booksmith</title>
<meta name="description" content="Building tools that help write books, and having fun along the way. The build-in-public hub for Byte-Sized Booksmith." />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Byte-Sized Booksmith" />
<meta property="og:title" content="Development Hub | Byte-Sized Booksmith" />
<meta property="og:description" content="Building tools that help write books, and having fun along the way." />
<meta property="og:url" content="https://bytesizedbooksmith.github.io/dev-hub/" />
<meta property="og:image" content="https://bytesizedbooksmith.github.io/dev-hub/images/DevHub-Header.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Development Hub | Byte-Sized Booksmith" />
<meta name="twitter:description" content="Building tools that help write books, and having fun along the way." />
<meta name="twitter:image" content="https://bytesizedbooksmith.github.io/dev-hub/images/DevHub-Header.jpg" />
<link rel="icon" type="image/svg+xml" href="images/favicon.svg" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="topbar">
<div class="inner">
<div class="brand"><img class="logo" src="images/favicon.svg" alt="" />Development <span class="mark">Hub</span></div>
<nav class="nav">
<a href="index.html" class="active">Home</a>
<a href="updates.html">Journal</a>
<a href="resources.html">Resources</a>
<a href="about.html">About Angie</a>
</nav>
</div>
</div>
<div class="page">
<header class="banner">
<h1 class="sr-only">Development Hub — building tools that help write books, and having fun along the way.</h1>
<img src="images/DevHub-Header.jpg" alt="Development Hub: building tools that help write books, and having fun along the way." />
</header>
<p class="lede">
This is where I share the tools I'm building to make the writing life a little
easier, plus a few resources worth passing along as I go. Some of it works
beautifully. Some of it is held together with hope and caffeine. You'll get to
see both.
</p>
<h2>What's Here</h2>
<div class="cards">
<div class="card">
<h3><a href="updates.html">Journal</a></h3>
<p>The running build log — milestones, short entries, and the occasional screenshot, pulled straight from my Notion.</p>
</div>
<div class="card">
<h3><a href="resources.html">Resources</a></h3>
<p>Build docs and references worth sharing, like the specs behind the tools I'm putting together.</p>
</div>
<div class="card">
<h3><a href="about.html">About Angie</a></h3>
<p>Who's behind all this, why I keep building robots to do my chores, and the role the Typo Fairy plays in my life.</p>
</div>
</div>
<h2>Projects</h2>
<p>What I'm building, and where each one stands right now.</p>
<div class="projects">
<div class="project">
<div class="top">
<h3>Seedsmith</h3>
<span class="status done">Done</span>
</div>
<p>My market-intelligence tool. Built and working — a build spec to share is on the way.</p>
</div>
<div class="project">
<div class="top">
<h3>The Backroom</h3>
<span class="status testing">Phase 3 · Testing</span>
</div>
<p>My “book machine.” Build spec done, backend and workflow built. Now putting it through its paces.</p>
</div>
<div class="project">
<div class="top">
<h3>Publishing Command Center</h3>
<span class="status shipped">v1 Shipped</span>
</div>
<p>Version 1 is out the door. Living with it for a bit before I kick off Version 1.5.</p>
</div>
<div class="project">
<div class="top">
<h3>Writing Room</h3>
<span class="status testing">Phase 10a · Testing</span>
</div>
<p>Phase 10a is complete. In testing before I add more goodies.</p>
</div>
<div class="project">
<div class="top">
<h3>Angie Hartwell Website</h3>
<span class="status building">Almost There</span>
</div>
<p>The pen-name site refresh is done. Just finishing the lead magnet, then it goes live.</p>
</div>
</div>
<h2>What's New</h2>
<div id="latest" class="feed">
<p class="empty">Loading the latest entries…</p>
</div>
<p><a href="updates.html">See the full journal →</a></p>
<footer class="foot">
<p>Development Hub · built in public · journal synced from Notion</p>
</footer>
</div>
<script src="feed.js"></script>
<script>
renderFeed({ target: "latest", limit: 3, compact: true });
</script>
</body>
</html>