summaryrefslogtreecommitdiffstats
path: root/gitsrht/templates/index.html
blob: 8d534c5792974195d26eca25a91e9fea683df1b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{% extends "layout.html" %}
{% block body %}
<div class="container">
  <div class="row">
    <div class="col-md-8">
      <p>
        Welcome to <strong>{{domain}}</strong>! This is the git hosting service
        for
        <a href="{{cfg("sr.ht", "site-info")}}">
          {{cfg("sr.ht", "site-name")}}</a>,
        {{cfg("sr.ht", "site-blurb")}}.
        {% if cfg("hg.sr.ht", "origin", default=None) %}
        For Mercurial support, see our
        <a href="{{cfg("hg.sr.ht", "origin")}}">
          hg service</a>.
        {% endif %}
        Features of this service include:
      </p>
      <ul>
        <li>Public, private, and "unlisted" repositories</li>
        <li>Fine grained access control, including access for users without accounts</li>
        <li>Software release management</li>
      </ul>
      <a
        class="btn btn-primary"
        href="{{cfg("meta.sr.ht", "origin")}}/register"
      >Register here {{icon('caret-right')}}</a>
      or
      <a href="{{oauth_url}}">
        Log in {{icon('caret-right')}}
      </a>
      to get started.
    </div>
  </div>
</div>
{% endblock %}