You're looking at it

Homepage: https://roundabout-host.com

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 no-home.html

View raw Download
text/html • 3.28 kiB
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
{% trans %}Welcome{% endtrans %}
4
{% endblock %}
5
{% block breadcrumbs %}
6
{% endblock %}
7
8
{% block nav %}
9
{% endblock %}
10
11
{% block seo %}
12
<meta name="description" content="{% trans %}Host your git repositories at roundabout-host.com. We only use free software.{% endtrans %}">
13
{% endblock %}
14
15
{% block content %}
16
<style>
17
#home-banner {
18
background-image: radial-gradient(circle, #2196F3 0%, #1976D2 50%, #0D47A1 100%);
19
color: #ffffff;
20
height: 100%;
21
padding: 16px 8px;
22
}
23
24
@media (max-width: 768px) {
25
#home-banner {
26
flex-direction: column;
27
text-align: center;
28
}
29
}
30
31
#home-banner .button {
32
background-color: var(--color-accent);
33
color: var(--color-accent-text);
34
border: none;
35
}
36
37
#home-banner a {
38
color: inherit;
39
}
40
</style>
41
<x-hbox id="home-banner" style="justify-content: center; align-items: center;">
42
<x-frame class="inner" style="--width: 768px; padding: 24px; margin: 0; justify-content: center; display: flex; flex-direction: column; --height: auto;">
43
<x-vbox style="justify-content: center; align-items: stretch;">
44
<div>
45
<h1 class="headline">roundabout-host.com</h1>
46
<p>{% trans %}Easy git repository hosting, with free software{% endtrans %}</p>
47
</div>
48
49
<x-buttonbox class="box-center">
50
<a class="button" href="/accounts">{% trans %}Log in or sign up{% endtrans %}</a>
51
<a class="button" href="https://roundabout-host.com/roundabout/roundabout">{% trans %}Download{% endtrans %}</a>
52
<p style="opacity: 0.75;">{% trans %}for setting up your own instance{% endtrans %}</p>
53
</x-buttonbox>
54
55
<x-hbox>
56
<a href="/about">{% trans %}System Info{% endtrans %}</a>
57
<a href="/help">{% trans %}Help & FAQ{% endtrans %}</a>
58
<a href="mailto:{{ config.CONTACT_EMAIL }}">{% trans %}Contact Us{% endtrans %}</a>
59
</x-hbox>
60
</x-vbox>
61
</x-frame>
62
<x-frame class="inner" style="--width: 384px; margin: 0; --height: auto;">
63
<x-vbox style="justify-content: center; align-items: stretch;">
64
<div>
65
<h2>{% trans %}Git hosting{% endtrans %}</h2>
66
<p>
67
{% trans %}
68
Simple git/HTTP hosting for your repositories, with experimental
69
decentralised merging.
70
{% endtrans %}
71
</p>
72
</div>
73
<div>
74
<h2>{% trans %}Free software{% endtrans %}</h2>
75
<p>
76
{% trans %}
77
100% AGPLv3 server software guarantees your freedoms.
78
{% endtrans %}
79
</p>
80
</div>
81
<div>
82
<h2>{% trans %}Communication{% endtrans %}</h2>
83
<p>
84
{% trans %}
85
Repository forums for discussing issues, questions, feature requests and
86
more, with formatting and powerful organisation tools.
87
{% endtrans %}
88
</p>
89
</div>
90
</x-vbox>
91
</x-frame>
92
</x-hbox>
93
{% endblock %}
94