mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-17 16:30:15 +02:00
* Change index images to font * Added SEAT_URL reference and added it to the index template
88 lines
2.3 KiB
HTML
88 lines
2.3 KiB
HTML
{% load staticfiles %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head lang="en">
|
|
<meta charset="UTF-8">
|
|
<title>{{ SITE_NAME }}</title>
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
|
<style>
|
|
html {
|
|
background: url('{% static 'img/index_images/index_blank_bg.jpg' %}') no-repeat scroll;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: cover;
|
|
}
|
|
|
|
div {
|
|
height: 200px;
|
|
width: 400px;
|
|
position: fixed;
|
|
top: 60%;
|
|
left: 50%;
|
|
margin-top: -100px;
|
|
margin-left: -200px;
|
|
}
|
|
|
|
#logo {
|
|
height: 200px;
|
|
width: 900px;
|
|
position: fixed;
|
|
top: 20%;
|
|
left: 50%;
|
|
margin-top: -100px;
|
|
margin-left: -450px;
|
|
}
|
|
|
|
img {
|
|
border: 0;
|
|
}
|
|
|
|
a:link, a:hover, a:visited, a:active {
|
|
font-family: 'Roboto', sans-serif;
|
|
color: #ffffff;
|
|
font-size: 36px;
|
|
padding: 10px 20px 10px 20px;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="logo">
|
|
<p style="text-align:center">
|
|
<img src="{% static 'img/index_images/logo.png' %}" alt="Logo">
|
|
</p>
|
|
</div>
|
|
<div id="content">
|
|
<p style="text-align:center">
|
|
<a href="/dashboard/">auth</a>
|
|
</p>
|
|
{% if FORUM_URL %}
|
|
<p style="text-align:center">
|
|
<a href="{{FORUM_URL}}">forum</a>
|
|
</p>
|
|
{% endif %}
|
|
{% if MARKET_URL %}
|
|
<p style="text-align:center">
|
|
<a href="{{MARKET_URL}}">market</a>
|
|
</p>
|
|
{% endif %}
|
|
{% if SEAT_URL %}
|
|
<p style="text-align:center">
|
|
<a href="{{SEAT_URL}}">seat</a>
|
|
</p>
|
|
{% endif %}
|
|
{% if KILLBOARD_URL %}
|
|
<p style="text-align:center">
|
|
<a href="{{KILLBOARD_URL}}">killboard</a>
|
|
</p>
|
|
{% endif %}
|
|
{% if EXTERNAL_MEDIA_URL %}
|
|
<p style="text-align:center">
|
|
<a href="{{EXTERNAL_MEDIA_URL}}">media</a>
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html>
|