mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-12 22:10:16 +02:00
Change index images to font (#841)
* Change index images to font * Added SEAT_URL reference and added it to the index template
This commit is contained in:
parent
7ca1c87c87
commit
9a015fd582
@ -15,6 +15,7 @@ def auth_settings(request):
|
|||||||
'IPS4_URL': settings.IPS4_URL,
|
'IPS4_URL': settings.IPS4_URL,
|
||||||
'SMF_URL': settings.SMF_URL,
|
'SMF_URL': settings.SMF_URL,
|
||||||
'MARKET_URL': settings.MARKET_URL,
|
'MARKET_URL': settings.MARKET_URL,
|
||||||
|
'SEAT_URL': settings.SEAT_URL,
|
||||||
'EXTERNAL_MEDIA_URL': settings.EXTERNAL_MEDIA_URL,
|
'EXTERNAL_MEDIA_URL': settings.EXTERNAL_MEDIA_URL,
|
||||||
'CURRENT_UTC_TIME': timezone.now(),
|
'CURRENT_UTC_TIME': timezone.now(),
|
||||||
'BLUE_API_MASK': settings.BLUE_API_MASK,
|
'BLUE_API_MASK': settings.BLUE_API_MASK,
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
<head lang="en">
|
<head lang="en">
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>{{ SITE_NAME }}</title>
|
<title>{{ SITE_NAME }}</title>
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||||
<style>
|
<style>
|
||||||
html {
|
html {
|
||||||
background: url('{% static 'img/index_images/index_blank_bg.jpg' %}') no-repeat scroll;
|
background: url('{% static 'img/index_images/index_blank_bg.jpg' %}') no-repeat scroll;
|
||||||
@ -22,6 +23,7 @@
|
|||||||
margin-top: -100px;
|
margin-top: -100px;
|
||||||
margin-left: -200px;
|
margin-left: -200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#logo {
|
#logo {
|
||||||
height: 200px;
|
height: 200px;
|
||||||
width: 900px;
|
width: 900px;
|
||||||
@ -31,9 +33,18 @@
|
|||||||
margin-top: -100px;
|
margin-top: -100px;
|
||||||
margin-left: -450px;
|
margin-left: -450px;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
border: 0;
|
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>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@ -44,29 +55,31 @@
|
|||||||
</div>
|
</div>
|
||||||
<div id="content">
|
<div id="content">
|
||||||
<p style="text-align:center">
|
<p style="text-align:center">
|
||||||
<a href="/dashboard/">
|
<a href="/dashboard/">auth</a>
|
||||||
<img src="{% static 'img/index_images/auth.png' %}" alt="Auth">
|
|
||||||
</a>
|
|
||||||
</p>
|
</p>
|
||||||
{% if FORUM_URL %}
|
{% if FORUM_URL %}
|
||||||
<p style="text-align:center">
|
<p style="text-align:center">
|
||||||
<a href="{{FORUM_URL}}">
|
<a href="{{FORUM_URL}}">forum</a>
|
||||||
<img src="{% static 'img/index_images/forums.png' %}" alt="Forums">
|
</p>
|
||||||
</a>
|
{% 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>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if KILLBOARD_URL %}
|
{% if KILLBOARD_URL %}
|
||||||
<p style="text-align:center">
|
<p style="text-align:center">
|
||||||
<a href="{{KILLBOARD_URL}}">
|
<a href="{{KILLBOARD_URL}}">killboard</a>
|
||||||
<img src="{% static 'img/index_images/killboard.png' %}" alt="Killboard">
|
|
||||||
</a>
|
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if EXTERNAL_MEDIA_URL %}
|
{% if EXTERNAL_MEDIA_URL %}
|
||||||
<p style="text-align:center">
|
<p style="text-align:center">
|
||||||
<a href="{{EXTERNAL_MEDIA_URL}}">
|
<a href="{{EXTERNAL_MEDIA_URL}}">media</a>
|
||||||
<img src="{% static 'img/index_images/media.png' %}" alt="External Media">
|
|
||||||
</a>
|
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user