docs

created pr with 130.1 on 2026-08-04T02:36:12Z · by a61b448c
cmds
checkout latest patchset:
ssh pr.pico.sh print 130 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print 130.[rev] | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 130

Patchset 130.1 on 2026-08-04T02:36:12Z · commit f723d4b

docs: home.page.tmpl: Fix HTML validation errors
Noelle Leigh 2026-08-04T02:23:19Z
Fixes some issues found via the [W3C Nu HTML Checker][0]:

* `herf` → `href`
* `</div>` → `</article>`

[0]: https://validator.w3.org/nu/?doc=https%3A%2F%2Fpico.sh%2F
Semantic diff summary
0 added, 0 modified, 0 signature changed, 0 removed across 0 analyzed files (1 file skipped: unsupported file type)
+2 -2 tmpl/home.page.tmpl #
......@@ -193,9 +193,9 @@ Cya!</pre>
193193 <div class="box">
194194 "SSH is kind of a secret hidden interface because of how nerdy it is,
195195 so I feel that it goes underappreciated sometimes."
196- <a herf="https://news.ycombinator.com/item?id=43579419">fragmede</a>
196+ <a href="https://news.ycombinator.com/item?id=43579419">fragmede</a>
197197 </div>
198- </div>
198+ </article>
199199
200200 <div class="text-center">
201201 <h3 class="text-lg inline-block">Ready to join?</h3>
Back to top