pico

created pr with 101.1 on 2025-12-26T18:53:04Z · by a61b448c
cmds
checkout latest patchset:
ssh pr.pico.sh print 101 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print 101.[rev] | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 101

Patchset 101.1 on 2025-12-26T18:53:04Z · commit 9a2b615

docs(pgs): Add docs link to marketing template
Noelle Leigh 2025-12-26T18:46:44Z
Taking inspiration from <https://pipe.pico.sh/> (commit 2aab941), this
patch adds "Docs" links to the top and bottom of the <https://pgs.sh/>
template, making it easy to jump straight to <https://pico.sh/pgs> with
a single click.

The markup has been slightly tweaked to improve the resulting layout.
Semantic diff summary
0 added, 0 modified, 0 signature changed, 0 removed across 0 analyzed files (1 file skipped: unsupported file type)
+6 -8 pkg/apps/pgs/html/marketing.page.tmpl #
......@@ -30,10 +30,9 @@
3030 <header>
3131 <h1 class="text-2xl font-bold">{{.Site.Domain}}</h1>
3232 <p class="text-lg">A zero-install static site hosting service for hackers</p>
33- <div>
34- <a href="https://pico.sh/getting-started" class="btn-link my">
35- GET STARTED
36- </a>
33+ <div class="flex gap my">
34+ <a href="https://pico.sh/getting-started" class="btn-link">GET STARTED</a>
35+ <a href="https://pico.sh/pgs" class="btn-link">DOCS</a>
3736 </div>
3837
3938 <hr />
......@@ -73,10 +72,9 @@
7372 </p>
7473 </div>
7574
76- <div>
77- <a href="https://pico.sh/getting-started" class="btn-link mt">
78- GET STARTED
79- </a>
75+ <div class="flex gap my">
76+ <a href="https://pico.sh/getting-started" class="btn-link">GET STARTED</a>
77+ <a href="https://pico.sh/pgs" class="btn-link">DOCS</a>
8078 </div>
8179 </div>
8280 </header>
Back to top