Eric Bower
·
2025-04-03
marketing.page.tmpl
1{{template "base" .}}
2
3{{define "title"}}{{.Site.Domain}} -- A zero-install static site hosting service for hackers{{end}}
4
5{{define "meta"}}
6<meta name="description" content="A zero-install static site hosting service for hackers" />
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="A zero-install static site hosting service for hackers">
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="A zero-install static site hosting service for hackers">
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">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>
37 </div>
38
39 <hr />
40 <div class="group">
41 <div class="box">
42 <h2 class="text-xl">Features</h2>
43 <ul>
44 <li>Fully manage static sites using <code>ssh</code></li>
45 <li>Unlimited projects, created instantly upon upload</li>
46 <li>Deploy using <a href="https://pico.sh/file-uploads">rsync, sftp, sshfs, or scp</a></li>
47 <li>Github Action</li>
48 <li>Automatic TLS for all projects</li>
49 <li>Promotion and rollback support</li>
50 <li>Site <a href="https://pico.sh/analytics">analytics</a></li>
51 <li>Custom domains for projects</li>
52 <li>Custom Redirects & Rewrites</a></li>
53 <li>Custom Headers</li>
54 <li>SPA support</li>
55 <li>Image manipulation API</li>
56 <li>Multiple regions</li>
57 </ul>
58 </div>
59
60 <div class="box">
61 <h2 class="text-xl">Publish your site with one command</h2>
62
63 <p>
64 When your site is ready to be published, copy the files to our server with a
65 familiar command:
66 </p>
67
68 <pre>rsync -rv public/ pgs.sh:/myproj/</pre>
69
70 <p>
71 That's it! There's no need to formally create a project, we create them
72 on-the-fly. Further, we provide TLS for every project automatically.
73 </p>
74 </div>
75
76 <div>
77 <a href="https://pico.sh/getting-started" class="btn-link mt">
78 GET STARTED
79 </a>
80 </div>
81 </div>
82</header>
83
84{{template "marketing-footer" .}}
85{{end}}