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 • 1.89 kiB
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
Welcome
4
{% endblock %}
5
{% block breadcrumbs %}
6
{% endblock %}
7
8
{% block nav %}
9
{% endblock %}
10
11
{% block content %}
12
<style>
13
#home-banner {
14
background-image: radial-gradient(circle, #2196F3 0%, #1976D2 50%, #0D47A1 100%);
15
color: #ffffff;
16
height: 320px;
17
}
18
19
#home-banner .button {
20
background-color: var(--color-accent);
21
color: var(--color-accent-text);
22
border: none;
23
}
24
25
#home-banner a {
26
color: inherit;
27
}
28
</style>
29
<x-hbox id="home-banner" style="justify-content: center; align-items: stretch;">
30
<x-frame class="inner" style="--width: 768px; padding: 24px; margin: 0; justify-content: center; display: flex; flex-direction: column;">
31
<x-vbox style="justify-content: center; align-items: stretch;">
32
<div>
33
<h1 class="headline">The roundabout to all your code</h1>
34
<p>Git repository hosting, made simple. Powered by free software.</p>
35
</div>
36
37
<x-buttonbox class="box-center">
38
<a class="button" href="/accounts">Log in or sign up</a>
39
<a class="button" href="/download">Download</a>
40
<p style="opacity: 0.75;">for setting up your own instance</p>
41
</x-buttonbox>
42
43
<x-hbox>
44
<a href="/about">System Info</a>
45
<a href="/help">Help & FAQ</a>
46
<a href="mailto:{{ config.CONTACT_EMAIL }}">Contact Us</a>
47
</x-hbox>
48
</x-vbox>
49
</x-frame>
50
<x-frame style="--width: 384px; margin: 0;">
51
<x-vbox style="justify-content: center; align-items: center; height: 100%; align-self: stretch;">
52
</x-vbox>
53
</x-frame>
54
</x-hbox>
55
{% endblock %}
56