-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresultats_2019.php
71 lines (50 loc) · 1.46 KB
/
resultats_2019.php
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
<?php include("common.php"); ?>
<!DOCTYPE html>
<html>
<head>
<?php page_includes(); ?>
<title>Concours Castor Informatique Français</title>
<script src="bower_components/highcharts/highcharts.js" type="text/javascript"></script>
<script>
var iFrameLoaded = false;
function loadIFrame() {
if (iFrameLoaded) {
return;
}
iFrameLoaded = true;
$('#map_etablissements').contents().find('html').html("<div style='width:100%; text-align:center; font-size:large; font-weight:bold; cursor:hand' onclick='parent.loadMap()'><p>Cliquez dans ce cadre pour afficher la carte des établissements participants</p><img src='img/map_small.png' height=150 /></div>");
}
function loadMap() {
$('#map_etablissements').attr("src", "map/map2014.html").css("height", "810px");
}
</script>
<?php page_tracker(); ?>
</head>
<body>
<center>
<?php page_header("Résultats 2019"); ?>
<div id="content">
<div id="sidebar">
<?php page_menu_full(); ?>
</div>
<div id="mainbar" class="mainbarstyle">
<?php //******************************************************************** ?>
<h1>Résultats 2019</h1>
<p>
Les graphes et tableaux ci-dessous vous permettent de déterminer le classement à partir du score.</p>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<div class="resultats-graphiques" style="margin-top:0.5em;margin-bottom:1em">
<?php include("resultats/resultats2019_castor.php"); ?>
</div>
<?php page_footer(); ?>
</div><!--mainbar-->
</div><!--content-->
</center>
</body>
</html>