diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-11-18 13:14:55 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-11-18 16:41:15 -0500 |
commit | 4f455f128fac94132798af12e4e2aad01d344278 (patch) | |
tree | 2f28cf8db024f497110ccd5385d596b6730e1d2f /index.html | |
parent | c34ee17f747c304076ea650fb99419f957842a68 (diff) | |
download | sr.ht-docs-4f455f128fac94132798af12e4e2aad01d344278.tar.gz |
Improve the onboarding flow for new users
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..3d299ed --- /dev/null +++ b/index.html @@ -0,0 +1,138 @@ +<p> + <strong>Welcome to sr.ht!</strong> You can access each of the main services + from the links in the navigation at the top of the site. You're currently on + man.sr.ht, which hosts the sr.ht user manual and provides wikis for projects + hosted on sr.ht. +</p> +<style> +dt { + font-weight: normal; +} +.event-row .col-md-6:first-child { + padding-right: 0.25rem; +} +.event-row .col-md-6:last-child { + padding-left: 0.25rem; +} +</style> +<div class="row event-row"> + <div class="col-md-6 event-list"> + <div class="event"> + <h3>Start here!</h3> + <p> + New here? We have some great tutorials to introduce you to the site. + </p> + <a href="tutorials" class="btn btn-success btn-block"> + Read the tutorials + <span class="icon icon-caret-right"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"/></svg> + </span> + </a> + </div> + <div class="event"> + <h3>General documentation</h3> + <p> + Information on billing, terms of service, privacy policy, and so on. + </p> + <a href="sr.ht" class="btn btn-default btn-block"> + Read boring stuff + <span class="icon icon-caret-right"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"/></svg> + </span> + </a> + </div> + </div> + <div class="col-md-6 event-list"> + <div class="event"> + <h3>Getting help</h3> + <p> + Need support? There are several resources available to you. + </p> + <a href="support.md" class="btn btn-default btn-block"> + Support resources + <span class="icon icon-caret-right"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"/></svg> + </span> + </a> + </div> + <div class="event"> + <h3>Developers & admins</h3> + <p> + Hacking on or deploying sr.ht yourself? Resources here. + </p> + <a href="installation.md" class="btn btn-default btn-block"> + Getting started + <span class="icon icon-caret-right"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"/></svg> + </span> + </a> + </div> + </div> +</div> +<div class="alert alert-warning"> + <strong>Notice</strong>: sr.ht documentation is a work in progress, and is + incomplete in many places. +</div> +<h3>Service Documentation</h3> +<dl class="row"> + <div class="col-md-6"> + <dt> + <strong>git.sr.ht</strong>: git hosting + </dt> + <dd> + <a href="/git.sr.ht">User Manual</a> + </dd> + </div> + <div class="col-md-6"> + <dt> + <strong>builds.sr.ht</strong>: build service + </dt> + <dd> + <a href="/builds.sr.ht">User Manual</a> + — + <a href="/builds.sr.ht/api.md">API Reference</a> + </dd> + </div> + <div class="col-md-6"> + <dt> + <strong>todo.sr.ht</strong>: bug tracking + </dt> + <dd> + <a href="/todo.sr.ht">User Manual</a> + </dd> + </div> + <div class="col-md-6"> + <dt> + <strong>lists.sr.ht</strong>: mailing lists + </dt> + <dd> + <a href="/lists.sr.ht">User Manual</a> + </dd> + </div> + <div class="col-md-6"> + <dt> + <strong>man.sr.ht</strong>: manual & wikis + </dt> + <dd> + <a href="/man.sr.ht">User Manual</a> + </dd> + </div> + <div class="col-md-6"> + <dt> + <strong>dispatch.sr.ht</strong>: task automation + </dt> + <dd> + <a href="/dispatch.sr.ht">User Manual</a> + </dd> + </div> + <div class="col-md-6"> + <dt> + <strong>meta.sr.ht</strong>: account & security + </dt> + <dd> + <a href="/meta.sr.ht">User Manual</a> + — + <a href="/meta.sr.ht/api.md">API Reference</a> + </dd> + </div> +</dl> |