asw-v01: archive deferred content (packs, site, lab, legacy examples)
- 2.1: packs/ -> archive/packs/ - 2.2: site/ -> archive/site/ - 2.3: src/lab/ -> archive/lab/ - 2.4: examples/ -> archive/examples-legacy/ (SSI-based)
This commit is contained in:
parent
416fe2f180
commit
e47a9f4401
173 changed files with 11 additions and 5 deletions
63
archive/examples-legacy/vault/tasks.html
Normal file
63
archive/examples-legacy/vault/tasks.html
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!--#include virtual="/_include/head.html" -->
|
||||
<title>Tasks — ASW Examples</title>
|
||||
<meta name="description" content="data-task — four task states for
|
||||
vault-native task lists">
|
||||
</head>
|
||||
<body>
|
||||
<!--#include virtual="/_include/nav.html" -->
|
||||
|
||||
<main>
|
||||
<header>
|
||||
<h1>Tasks</h1>
|
||||
<p data-text="lead">data-task — four task states for vault-native
|
||||
task lists</p>
|
||||
</header>
|
||||
|
||||
<p><code>data-task</code> on <code><li></code> elements renders
|
||||
vault task lists. Four states: <code>todo</code>, <code>done</code>,
|
||||
<code>blocked</code>, <code>cancelled</code>.</p>
|
||||
<h2 id="states">States</h2>
|
||||
<ul>
|
||||
<li data-task="todo">Write documentation</li>
|
||||
<li data-task="done">Set up the repo</li>
|
||||
<li data-task="blocked">Deploy to production</li>
|
||||
<li data-task="cancelled">Rewrite in Rust</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="mixed-list">Mixed list</h2>
|
||||
<ul>
|
||||
<li data-task="done">Project scaffold</li>
|
||||
<li data-task="done">Config system</li>
|
||||
<li data-task="todo">PDF extraction</li>
|
||||
<li data-task="todo">SQLite storage</li>
|
||||
<li data-task="blocked">MCP server — waiting on spec review</li>
|
||||
<li data-task="cancelled">Redis queue — overkill for v0.1</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="nested-tasks">Nested tasks</h2>
|
||||
<ul>
|
||||
<li data-task="todo">Build the docs site
|
||||
<ul>
|
||||
<li data-task="done">Taxonomy defined</li>
|
||||
<li data-task="done">Vault extension pages</li>
|
||||
<li data-task="todo">Content section</li>
|
||||
<li data-task="todo">Forms section</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li data-task="done">Typography system</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="with-metadata">With metadata</h2>
|
||||
<ul>
|
||||
<li data-task="todo">Ship v0.2 <span data-text="dim">due 2026-04-15 · assigned: vigilio</span></li>
|
||||
<li data-task="done">Write changelog <span data-text="dim">2026-03-28</span></li>
|
||||
<li data-task="blocked">DNS migration <span data-text="dim">waiting on: registrar access</span></li>
|
||||
</ul>
|
||||
</main>
|
||||
|
||||
<!--#include virtual="/_include/footer.html" -->
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue