repos / pico

pico services - prose.sh, pastes.sh, imgs.sh, feeds.sh, pgs.sh
git clone https://github.com/picosh/pico.git

pico / pgs / html
Eric Bower · 27 Jul 24

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
41  <div class="group">
42    <div class="box">
43      <h2 class="text-xl">Features</h2>
44      <ul>
45        <li>Use familiar cli tools to fully manage static sites</li>
46        <li>Distinct static sites as projects</li>
47        <li>Unlimited projects, created instantly upon upload</li>
48        <li>Deploy using <a href="https://pico.sh/file-uploads">rsync, sftp, or scp</a></li>
49        <li>Promotion/rollback support</li>
50        <li>Managed HTTPS for all projects</li>
51        <li>Site <a href="https://pico.sh/analytics">analytics</a></li>
52        <li><a href="https://pico.sh/custom-domains#pgssh">Custom domains</a> for projects</li>
53        <li><a href="https://pico.sh/pgs#custom-redirects">Custom redirects</a></li>
54        <li><a href="https://pico.sh/pgs#custom-headers">Custom headers</a></li>
55        <li><a href="https://pico.sh/pgs#single-page-applications">SPA support</a></li>
56        <li><a href="https://pico.sh/images#image-manipulation">Image manipulation API</a></li>
57        <li><a href="https://pico.sh/pgs#access-control-list">Private projects</a></li>
58        <li><a href="https://pico.sh/faq#are-there-any-bandwidth-limitations">No bandwidth limitations</a></li>
59      </ul>
60    </div>
61
62    <div class="box">
63      <h2 class="text-xl">Publish your site with one command</h2>
64
65      <p>
66        When your site is ready to be published, copy the files to our server with a
67        familiar command:
68      </p>
69
70      <pre>rsync -rv public/ pgs.sh:/myproj/</pre>
71
72      <p>
73        That's it! There's no need to formally create a project, we create them
74        on-the-fly. Further, we provide TLS for every project automatically.
75      </p>
76    </div>
77
78    <div>
79      <a href="https://pico.sh/getting-started" class="btn-link mt">
80        GET STARTED
81      </a>
82    </div>
83  </div>
84</header>
85
86{{template "marketing-footer" .}}
87{{end}}