combo/combo/public/templates/combo/empty_site.html

65 lines
1.1 KiB
HTML

{% load i18n %}<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<style>
body {
margin: auto;
text-align: center;
}
#content:after {
position: absolute;
text-align: center;
margin: auto;
content: "↑↑ ↓↓ ←→ ←→ B A";
font-family: sans-serif;
font-weight: bold;
font-size: 20vh;
display: block;
width: 4em;
padding-left: 0.3em;
color: rgba(0, 0, 0, 0.03);
top: 0;
}
#content {
position: relative;
z-index: 10;
width: 50%;
max-width: 30em;
margin: 6em auto;
padding: 1em;
text-align: left;
height: 100%;
font-size: 200%;
}
#content #goto {
padding-left: 1em;
}
#content a {
color: inherit;
}
</style>
</head>
<body>
<div id="content">
<h1>{% trans 'Welcome!' %}</h1>
{% blocktrans %}
<p>
Your installation of Combo was successful and you can now play with it
to your heart's content. It is currently empty, your first move should
probably be to head to the management interface to add some pages.
</p>
{% endblocktrans %}
<p id="goto">
<a href="{% url 'combo-manager-homepage' %}">{% url 'combo-manager-homepage' %}</a>
</p>
</div>
</body>
</html>