repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

pico / pkg / apps / pipe / html
Eric Bower  ·  2026-01-02

marketing.page.tmpl

 1{{template "base" .}}
 2
 3{{define "title"}}pipe: pubsub without the infrastructure. stream data between machines using ssh.{{end}}
 4
 5{{define "meta"}}
 6<meta name="description" content="authenticated *nix pipes over ssh" />
 7
 8<meta property="og:type" content="website">
 9<meta property="og:site_name" content="{{.Site.Domain}}">
10<meta property="og:url" content="https://{{.Site.Domain}}">
11<meta property="og:title" content="{{.Site.Domain}}">
12<meta property="og:description" content="pubsub using ssh">
13{{end}}
14
15{{define "attrs"}}class="container-sm"{{end}}
16
17{{define "body"}}
18<header class="flex flex-col items-center gap-2">
19  <div class="flex flex-col">
20    <img src="https://pico.sh/logo.svg" alt="pico logo" width="50" height="50" />
21    <canvas id="canvas" width="50" height="50"></canvas>
22    <hr width="100%" class="m-0" />
23  </div>
24  <h1 class="text-2xl font-bold text-center">PubSub without the infrastructure. Stream data between machines using ssh.</h1>
25  <div class="text-center flex gap">
26    <a href="https://pico.sh/getting-started" class="btn-link mt inline-block">GET STARTED</a>
27    <a href="https://pico.sh/pipe" class="btn-link mt inline-block">DOCS</a>
28  </div>
29</header>
30
31{{template "marketing-footer" .}}
32{{end}}