pico
created pr with
101.1
cmds
checkout latest patchset:
ssh pr.pico.sh print 101 | git am -3checkout any patchset in a patch request:
ssh pr.pico.sh print 101.[rev] | git am -3add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 101
Patchset
101.1
docs(pgs): Add docs link to marketing template
Noelle Leigh
2025-12-26T18:46:44ZTaking 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 @@ | |
| 30 | 30 | <header> | |
| 31 | 31 | <h1 class="text-2xl font-bold">{{.Site.Domain}}</h1> | |
| 32 | 32 | <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> | |
| 37 | 36 | </div> | |
| 38 | 37 | ||
| 39 | 38 | <hr /> |
| ... | ... | @@ -73,10 +72,9 @@ | |
| 73 | 72 | </p> | |
| 74 | 73 | </div> | |
| 75 | 74 | ||
| 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> | |
| 80 | 78 | </div> | |
| 81 | 79 | </div> | |
| 82 | 80 | </header> |