no-home.html
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 { 18background-image: radial-gradient(circle, #2196F3 0%, #1976D2 50%, #0D47A1 100%); 19color: #ffffff; 20height: 100%; 21padding: 16px 8px; 22} 23 24@media (max-width: 768px) { 25#home-banner { 26flex-direction: column; 27text-align: center; 28} 29} 30 31#home-banner .button { 32background-color: var(--color-accent); 33color: var(--color-accent-text); 34border: none; 35} 36 37#home-banner a { 38color: 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 %} 68Simple git/HTTP hosting for your repositories, with experimental 69decentralised merging. 70{% endtrans %} 71</p> 72</div> 73<div> 74<h2>{% trans %}Free software{% endtrans %}</h2> 75<p> 76{% trans %} 77100% AGPLv3 server software guarantees your freedoms. 78{% endtrans %} 79</p> 80</div> 81<div> 82<h2>{% trans %}Communication{% endtrans %}</h2> 83<p> 84{% trans %} 85Repository forums for discussing issues, questions, feature requests and 86more, with formatting and powerful organisation tools. 87{% endtrans %} 88</p> 89</div> 90</x-vbox> 91</x-frame> 92</x-hbox> 93{% endblock %} 94