Eric Bower
·
2026-01-16
marketing.page.tmpl
1{{template "base" .}}
2
3{{define "title"}}{{.Site.Domain}} -- Deploy static sites with a single command. rsync and you're live.{{end}}
4
5{{define "meta"}}
6<meta name="description" content="Deploy static sites with a single command. rsync and you're live." />
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="Deploy static sites with a single command. rsync and you're live.">
13
14<meta name="twitter:card" content="summary" />
15<meta property="twitter:url" content="https://{{.Site.Domain}}">
16<meta property="twitter:title" content="{{.Site.Domain}}">
17<meta property="twitter:description" content="Deploy static sites with a single command. rsync and you're live.">
18<meta name="twitter:image" content="https://{{.Site.Domain}}/card.png" />
19<meta name="twitter:image:src" content="https://{{.Site.Domain}}/card.png" />
20
21<meta property="og:image:width" content="300" />
22<meta property="og:image:height" content="300" />
23<meta itemprop="image" content="https://{{.Site.Domain}}/card.png" />
24<meta property="og:image" content="https://{{.Site.Domain}}/card.png" />
25{{end}}
26
27{{define "attrs"}}{{end}}
28
29{{define "body"}}
30<header>
31 <h1 class="text-2xl font-bold">{{.Site.Domain}}</h1>
32 <p class="text-lg">Deploy static sites with a single command. rsync and you're live.</p>
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>
36 </div>
37
38 <hr />
39 <div class="group">
40 <div class="box">
41 <h2 class="text-xl">Publish your site with one command</h2>
42
43 <p>
44 Deploy static sites with a single command. No passwords. No config files. No CI setup.
45 Just your SSH key and rsync.
46 </p>
47
48 <pre>rsync -rv public/ pgs.sh:/myproj/</pre>
49
50 <p>
51 That's it! There's no need to formally create a project, we create them
52 on-the-fly. Further, we provide TLS for every site automatically.
53 </p>
54 </div>
55 </div>
56</header>
57
58{{template "marketing-footer" .}}
59{{end}}