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
87
src/lab/boilerplate/kitchen-sink.html
Normal file
87
src/lab/boilerplate/kitchen-sink.html
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Kitchen Sink | Trentuna</title>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Kitchen Sink</h1>
|
||||
<p>A comprehensive test of all HTML elements.</p>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<article>
|
||||
<h2>Typography & Lists</h2>
|
||||
<p>This is a paragraph with <strong>bold</strong>, <em>italic</em>, <mark>highlighted</mark>, and <code>inline code</code>.</p>
|
||||
<ul>
|
||||
<li>Unordered list item</li>
|
||||
<li>Another item</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>Ordered list item</li>
|
||||
<li>Second item</li>
|
||||
</ol>
|
||||
|
||||
<h2>Media</h2>
|
||||
<figure>
|
||||
<img src="placeholder.jpg" alt="Placeholder image">
|
||||
<figcaption>Figure caption</figcaption>
|
||||
</figure>
|
||||
<video controls width="100%">
|
||||
<source src="movie.mp4" type="video/mp4">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
|
||||
<h2>Tables</h2>
|
||||
<table>
|
||||
<caption>Data Table Caption</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Header 1</th>
|
||||
<th>Header 2</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Row 1, Cell 1</td>
|
||||
<td>Row 1, Cell 2</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h2>Forms</h2>
|
||||
<form action="/submit" method="post">
|
||||
<fieldset>
|
||||
<legend>Contact Details</legend>
|
||||
<label for="name">Name:</label>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">Email:</label>
|
||||
<input type="email" id="email" name="email"><br><br>
|
||||
|
||||
<label for="message">Message:</label><br>
|
||||
<textarea id="message" name="message" rows="4"></textarea><br><br>
|
||||
|
||||
<label>
|
||||
<input type="checkbox" name="subscribe"> Subscribe to newsletter
|
||||
</label>
|
||||
<br><br>
|
||||
<button type="submit">Submit</button>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<h2>Interactive Elements</h2>
|
||||
<details>
|
||||
<summary>Click to expand details</summary>
|
||||
<p>This is the hidden content revealed by the details element.</p>
|
||||
</details>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>© 2026 Trentuna. All rights reserved.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue