Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,25 @@ <h1>The pieces of WordPress, without the dependencies.</h1>
<div class="cta-row">
<a class="cta primary" href="learn/quickstart.html">Quickstart →</a>
<a class="cta" href="learn/">Take the tutorial</a>
<a class="cta" href="reference/">Browse components</a>
<a class="cta" href="#components">Browse components</a>
</div>
</section>

<section class="two-doors">
<h2>Where to start</h2>

<div class="doors">
<a class="door" href="learn/">
<strong>I want to learn the toolkit.</strong>
<span>Build a real content importer across four short chapters. We'll start with one HTML rewrite and finish with a ZIP-packaged WXR export. Every code block runs in the browser; every chapter ends with something you can keep.</span>
<em>~45 minutes →</em>
</a>

<a class="door" href="#components">
<strong>I'm here to look something up.</strong>
<span>Eighteen component pages, each with a one-line definition, a minimal runnable example, refinements, the pitfalls people actually trip on, and links back to the tutorial chapters where the concept first appears.</span>
<em>Browse all components ↓</em>
</a>
</div>
</section>

Expand All @@ -48,7 +66,7 @@ <h2>The shape of it</h2>
<p>Eighteen components. Each is a small library focused on one job, distributable as its own Composer package, depending only on PHP itself plus other toolkit components — no Composer packages outside the <code>wp-php-toolkit/*</code> family, no PHP extensions beyond <code>json</code> and <code>mbstring</code>.</p>
</section>

<section class="all-components">
<section class="all-components" id="components">
<h2>All eighteen components</h2>

<h3>Content and migration</h3>
Expand Down Expand Up @@ -86,24 +104,6 @@ <h3>WordPress runtime support</h3>
</ul>
</section>

<section class="two-doors">
<h2>Where to start</h2>

<div class="doors">
<a class="door" href="learn/">
<strong>I want to learn the toolkit.</strong>
<span>Build a real content importer across four short chapters. We'll start with one HTML rewrite and finish with a ZIP-packaged WXR export. Every code block runs in the browser; every chapter ends with something you can keep.</span>
<em>~45 minutes →</em>
</a>

<a class="door" href="reference/">
<strong>I'm here to look something up.</strong>
<span>Eighteen component pages, each with a one-line definition, a minimal runnable example, refinements, the pitfalls people actually trip on, and links back to the tutorial chapters where the concept first appears.</span>
<em>Browse all components →</em>
</a>
</div>
</section>

<section class="proofs">
<h2>The toolkit in one line each</h2>
<table class="proof-table">
Expand Down
Loading