aboutsummaryrefslogtreecommitdiff
path: root/htmx/static/pico-1.5.11/docs/src/index.html
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2024-01-05 23:18:49 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2024-01-05 23:18:49 -0500
commitbd5a00c61b355c857b5c99323592ca432dea5d0a (patch)
tree7e8ac7730527c1ad71e3fdac85840948fd23f45f /htmx/static/pico-1.5.11/docs/src/index.html
parentc71b37eb23d4c8af7ab983de34c6da5be9363f3a (diff)
downloadpaste-bd5a00c61b355c857b5c99323592ca432dea5d0a.tar.gz
paste-bd5a00c61b355c857b5c99323592ca432dea5d0a.tar.xz
wip
Diffstat (limited to 'htmx/static/pico-1.5.11/docs/src/index.html')
-rw-r--r--htmx/static/pico-1.5.11/docs/src/index.html59
1 files changed, 59 insertions, 0 deletions
diff --git a/htmx/static/pico-1.5.11/docs/src/index.html b/htmx/static/pico-1.5.11/docs/src/index.html
new file mode 100644
index 0000000..5c52c54
--- /dev/null
+++ b/htmx/static/pico-1.5.11/docs/src/index.html
@@ -0,0 +1,59 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ ${require('./_head.html')
+ title=`Documentation`
+ description=`Pico works without package manager or dependencies! There are 4 ways to get started with Pico CSS: manually, from a CDN, with NPM, or with Composer.`
+ canonical=``
+ }
+ </head>
+
+ <body>
+ ${require('./_nav.html')}
+
+ <main class="container" id="docs">
+ ${require('./_sidebar.html') active=`start-link`}
+
+ <div role="document">
+ <section id="start">
+ <hgroup>
+ <h1>Usage</h1>
+ <h2>Works without package manager or dependencies 🙂!</h2>
+ </hgroup>
+ <p>There are 4 ways to get started with Pico CSS:</p>
+ <h3>Install manually</h3>
+ <p><a href="https://github.com/picocss/pico/archive/refs/tags/v1.5.11.zip">Download Pico</a> and link <code>/css/pico.min.css</code> in the <code>&lt;<b>head</b>&gt;</code> of your website.</p>
+ <pre><code>&lt;<b>link</b> <i>rel</i>=<u>"stylesheet"</u> <i>href</i>=<u>"css/pico.min.css"</u>&gt;</code></pre>
+ <h3>Install from CDN</h3>
+ <p>Alternatively, you can use <a href="https://www.jsdelivr.com/package/npm/@picocss/pico">jsDelivr CDN</a> to link pico.css</p>
+ <pre><code>&lt;<b>link</b> <i>rel</i>=<u>"stylesheet"</u> <i>href</i>=<u>"https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css"</u>&gt;</code></pre>
+ <h3>Install with NPM</h3>
+ <pre><code><b>npm</b> <i>install</i> <u>@picocss/pico</u></code></pre>
+ <h3>Install with Composer</h3>
+ <pre><code><b>composer</b> <i>require</i> <u>picocss/pico</u></code></pre>
+ <p>Starter HTML template:</p>
+
+<pre><code><em>&lt;!doctype html&gt;</em>
+&lt;<b>html</b> <i>lang</i>=<u>"en"</u>&gt;
+ &lt;<b>head</b>&gt;
+ &lt;<b>meta</b> <i>charset</i>=<u>"utf-8"</u>&gt;
+ &lt;<b>meta</b> <i>name</i>=<u>"viewport"</u> <i>content</i>=<u>"width=device-width, initial-scale=1"</u>&gt;
+ &lt;<b>link</b> <i>rel</i>=<u>"stylesheet"</u> <i>href</i>=<u>"css/pico.min.css"</u>&gt;
+ &lt;<b>title</b>>Hello, world!&lt;/<b>title</b>&gt;
+ &lt;/<b>head</b>&gt;
+ &lt;<b>body</b>&gt;
+ &lt;<b>main</b> <i>class</i>=<u>"container"</u>&gt;
+ &lt;<b>h1</b>&gt;Hello, world!&lt;/<b>h1</b>&gt;
+ &lt;/<b>main</b>&gt;
+ &lt;/<b>body</b>&gt;
+&lt;/<b>html</b>&gt;</code></pre>
+
+ </section>
+
+ ${require('./_footer.html')}
+
+ </div>
+ </main>
+ <script src="js/commons.min.js"></script>
+ </body>
+</html>