-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (75 loc) · 3.11 KB
/
index.html
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
<!DOCTYPE html>
<html lang="fr-FR" ng-app="algorea">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Concours Algoréa</title>
<script>
if(window.location.protocol != 'https:') {
try {
var xhr = new XMLHttpRequest();
xhr.onload = function() {
if (window.location.hostname != '127.0.0.1') {
window.location.href = 'https:' + window.location.href.substring(window.location.protocol.length);
}
}
xhr.open('GET', 'https://static4.castor-informatique.fr/contestAssets/https_test.txt');
xhr.send();
} catch(e) {}
}
</script>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="images/favicon.ico" type="image/x-icon"/> <!--probablement à modifier-->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular-route.js"></script>
<script type="text/javascript" src="route.js?v=62"></script>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<body ng-controller="PageCtrl">
<header class="header" role="banner">
<div class="headerContent">
<div class="subHeader">
</div>
<div class="siteLogo">
<div class="siteTitle"><img src="images/logo_fusee.png"/> Concours Algoréa<img src="images/etoiles.png" style="width:80px"/></div>
</div>
<nav id="menu" role="navigation">
<ul>
<li ng-class="{active: isActive('/')}">
<a href="#/">Présentation</a>
</li><li ng-class="{active: isActive('/participation')}">
<a href="#/participation">Participer</a>
</li><li ng-class="{active: isActive('/preparation')}">
<a href="#/preparation">Se préparer</a>
</li>
<!--<li ng-class="{active: isActive('/recompenses')}">
<a href="#/recompenses">Récompenses</a>
</li>-->
<li ng-class="{active: isActive('/resultats')}">
<a href="#/resultats">Résultats</a>
</li>
</li><li ng-class="{active: isActive('/organizers')}">
<a href="#/organizers">Organisateurs</a>
</li>
</ul>
</nav>
</div>
</header>
<div ng-if="isActive('/')"><ng-include src="'actus.html?v=44'" id="actus"></ng-include></div>
<div class="mainContainer" id="content" role="main">
<div ng-view autoscroll="true"><!-- the div that displays the page content --></div>
<div class="clear"></div>
</div>
<footer id="footer" role="contentinfo">
<div id="copyright">
Concours Algoréa par <a href="http://www.france-ioi.org" target="_blank">France-ioi</a> <!--- <a href="#/quiSommesNous">Contact</a>--> —
<a href="#/infosLegales">Informations légales</a>
</div>
</footer>
</body>
</html>