mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-20 01:32:31 +02:00
87 lines
2.3 KiB
HTML
87 lines
2.3 KiB
HTML
{% load staticfiles %}
|
|
<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;
|
|
}
|
|
|
|
</style>
|
|
|
|
<html>
|
|
<head lang="en">
|
|
<meta charset="UTF-8">
|
|
<title>
|
|
{% if IS_CORP %}
|
|
{{ CORP_NAME }}
|
|
{% else %}
|
|
{{ ALLIANCE_NAME }}
|
|
{% endif %}
|
|
</title>
|
|
</head>
|
|
<body>
|
|
<div id="logo">
|
|
<p style="text-align:center">
|
|
<!--Uncomment the below line to use a custom logo-->
|
|
<!--<img src="{% static 'img/index_images/logo.png' %}" border="0">-->
|
|
<!--Comment the below block to use a custom logo-->
|
|
{% if IS_CORP %}
|
|
<img src="https://image.eveonline.com/Corporation/{{ CORP_ID }}_256.png" border="0">
|
|
{% else %}
|
|
<img src="https://image.eveonline.com/Alliance/{{ ALLIANCE_ID }}_128.png" border="0">
|
|
{% endif %}
|
|
<!--Stop commenting here-->
|
|
</p>
|
|
</div>
|
|
<div id="content">
|
|
<p style="text-align:center">
|
|
<a href="/dashboard/">
|
|
<img src="{% static 'img/index_images/auth.png' %}" border="0">
|
|
</a>
|
|
</p>
|
|
{% if FORUM_URL %}
|
|
<p style="text-align:center">
|
|
<a href="{{FORUM_URL}}">
|
|
<img src="{% static 'img/index_images/forums.png' %}" border="0">
|
|
</a>
|
|
</p>
|
|
{% endif %}
|
|
{% if KILLBOARD_URL %}
|
|
<p style="text-align:center">
|
|
<a href="{{KILLBOARD_URL}}">
|
|
<img src="{% static 'img/index_images/killboard.png' %}" border="0">
|
|
</a>
|
|
</p>
|
|
{% endif %}
|
|
{% if EXTERNAL_MEDIA_URL %}
|
|
<p style="text-align:center">
|
|
<a href="{{EXTERNAL_MEDIA_URL}}">
|
|
<img src="{% static 'img/index_images/media.png' %}" border="0">
|
|
</a>
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html>
|