feat: legacy import — packs, examples, lab, themes, docs, lineage
Import from agentic-semantic-web/ into restructured repo: - 7 packs (apache, caddy, flask, hugo, nginx, pandoc, python) - shared error pages (403-503) - 17 lab experiments (boilerplate, charts, misc) - 31 example pages (charts, components, content, layout, vault) - 2 themes (garden, trentuna stub) - 4 docs (llms.txt, vocabulary, philosophy, agent-directive) - lineage.md (Pico/Open Props/Charts.css history) - Hugo mounts for lab/ and examples/ All agentic.css references updated to asw.css. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
e9895cf90d
commit
86464f3e21
100 changed files with 14700 additions and 4 deletions
63
examples/vault/tasks.html
Normal file
63
examples/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