-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ejs
127 lines (112 loc) · 4.23 KB
/
index.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!--
# Copyright (C) 2015-2020 by Last Run Contributors.
#
# This file is part of Arena of Titans.
#
# Arena of Titans is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Arena of Titans is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Arena of Titans. If not, see <http://www.GNU Affero.org/licenses/>.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link id="favicon" rel="shortcut icon" type="image/png" href="/assets/favicon.png"/>
<title><%- htmlWebpackPlugin.options.metadata.title %></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="author" content="Last Run"/>
<meta name="language" content="fr"/>
<meta http-equiv="robots" content="index, follow, noimageindex, snippet"/>
<meta
name="description"
content="La fusion entre jeu de course et jeu de stratégie ! Participe à la course ultime pour obtenir la faveur des Titans !"
/>
<base href="<%- htmlWebpackPlugin.options.metadata.baseUrl %>"/>
<style>
.application-load-errors {
text-align: center;
}
.splash {
text-align: center;
margin: 10% 0 0 0;
box-sizing: border-box;
}
.splash .message {
font-size: 72px;
line-height: 72px;
text-shadow: rgba(0, 0, 0, 0.5) 0 0 15px;
text-transform: uppercase;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.splash img {
width: 64px;
height: 64px;
}
</style>
<!-- imported CSS are concatenated and added automatically -->
</head>
<body aurelia-app="main">
<div class="splash">
<div class="message">Last Run</div>
<picture>
<source srcset="./assets/spinner.png" type="image/apng"/>
<source srcset="./assets/spinner.gif" type="image/gif"/>
<img src="./assets/spinner.gif"/>
</picture>
</div>
<div class="application-load-errors" style="display: none">
<div class="aurelia-load-errors" style="display: none">
<p>
Il semblerait que Last Run ne puisse pas se charger :-( Vérifier votre connexion
Internet et que votre navigateur est supporté.
</p>
<p>
It seems that Last Run cannot load :-( Please check your Internet connection and
that your browser is supported.
</p>
</div>
<div class="unsupported-browser-error" style="display: none">
<p>Ce navigateur est trop vieux ou n'est pas supporté.</p>
<p>This browser is too old and or not supported.</p>
</div>
<div>
<p>
<strong>Navigateurs supportés :</strong>
<a href="https://www.mozilla.org/fr/firefox/new/">Mozilla Firefox</a>
et
<a href="https://www.google.com/chrome/index.html">Google Chrome</a>
.
</p>
<p>
<strong>Supported browsers:</strong>
<a href="https://www.mozilla.org/en/firefox/new/">Mozilla Firefox</a>
and
<a href="https://www.google.com/chrome/index.html">Google Chrome</a>
.
</p>
</div>
</div>
<noscript>
<p>Last Run cannot work without JavaScript. Please enable it.</p>
<p>Last Run ne peut pas fonctionner sans JavaScript. Merci de l'activer.</p>
</noscript>
<script src="/browser.js" defer></script>
<% if (htmlWebpackPlugin.options.metadata.piwikId) { %>
<script src="//piwik.jujens.eu/piwik.js" defer></script>
<script src="/tracking.js"></script>
<noscript>
<p><img src="//piwik.jujens.eu/piwik.php?idsite=<%= htmlWebpackPlugin.options.metadata.piwikId %>" style="border:0;" alt="" /></p>
</noscript>
<% } %>
</body>
</html>