-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
97 lines (79 loc) · 4.03 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<head>
<link rel="icon" type="image/x-icon" href="https://evolution2626.org/assets/img/favicon.ico">
<link rel="icon" type="image/png" href="https://evolution2626.org/assets/img/favicon.png">
<title>Evolution en direct</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<script defer src="js/live.js?nc=2.9"></script>
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.red-yellow.min.css" />
<link rel="stylesheet" href="css/live.css?nc=2.3">
<meta charset="utf-8">
<meta name="description" content="Site web officiel pour regarder l'équipe Evolution 2626 en direct lors des compétitions. Retrouvez également les archives de nos matchs.">
<meta name="keywords" content="Evolution 2626, live, en direct, archives, FIRST Robotics, FIRST Robotics Competition, robotics, first, firstrobotics, competition, team, regionals, matches, videos">
<meta property="og:title" content="Evolution 2626 en direct" />
<meta property="og:image" content="https://2626.live/img/2626logo.png" />
<meta property="og:description" content="Site web officiel pour regarder l'équipe Evolution 2626 en direct lors des compétitions. Retrouvez également les archives de nos matchs."/>
<meta property="og:site_name" content="Evolution 2626 en direct" />
</head>
<header>
<!-- Always shows a header, even in smaller screens. -->
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<!-- Title -->
<span class="mdl-layout-title">Evolution 2626 en direct</span>
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation. We hide it in small screens. -->
<nav class="mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="/">En direct</a>
<a class="mdl-navigation__link" href="/archives">Archives</a>
<a class="mdl-navigation__link" href="http://evolution2626.org">Site web de l'équipe</a>
</nav>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Evolution 2626</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="/">En direct</a>
<a class="mdl-navigation__link" href="/archives">Archives</a>
<a class="mdl-navigation__link" href="http://evolution2626.org">Site web de l'équipe</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<div>
<div class="column" id="livestreamsDiv"></div>
<div class="chat">
<h3 style="text-align: center;" id="currentEventName"></h3>
<p style="text-align: center;" id="competitionStatusStr"></p>
<h4 style="text-align: center;">Horaire des matchs</h4>
<h5 style="text-align: center; display: none;"><a href="" target="_blank">Voir l'horaire des matchs de pratique</a></h5>
<p style="text-align: center;" id="horaireMatchStatus"></p>
<span id="horaireMatchs" style="text-align: center; display: none;">
<table class="match-table">
<thead>
<tr class="key">
<th><a id="eventVideosButton" href=""><span class="material-icons">play_circle</span></a></th>
<th>Match</th>
<th colspan="2">Scores</th>
</tr>
</thead>
<tbody id="matchTableBody">
</tbody>
</table>
</span>
</div>
</div>
</div>
</main>
</div>
</header>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-93477387-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-93477387-1');
</script>