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 content %} 12<style> 13#home-banner { 14background-image: radial-gradient(circle, #2196F3 0%, #1976D2 50%, #0D47A1 100%); 15color: #ffffff; 16height: 100%; 17} 18 19#home-banner .button { 20background-color: var(--color-accent); 21color: var(--color-accent-text); 22border: none; 23} 24 25#home-banner a { 26color: 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">roundabout-host.com</h1> 34<p>{% trans %}Easy git repository hosting, with free software{% endtrans %}</p> 35</div> 36 37<x-buttonbox class="box-center"> 38<a class="button" href="/accounts">{% trans %}Log in or sign up{% endtrans %}</a> 39<a class="button" href="/download">{% trans %}Download{% endtrans %}</a> 40<p style="opacity: 0.75;">{% trans %}for setting up your own instance{% endtrans %}</p> 41</x-buttonbox> 42 43<x-hbox> 44<a href="/about">{% trans %}System Info{% endtrans %}</a> 45<a href="/help">{% trans %}Help & FAQ{% endtrans %}</a> 46<a href="mailto:{{ config.CONTACT_EMAIL }}">{% trans %}Contact Us{% endtrans %}</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