This repository was archived by the owner on Feb 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (38 loc) · 1.42 KB
/
index.html
File metadata and controls
46 lines (38 loc) · 1.42 KB
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
<html lang="fr">
<head>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="tweetjs.js"></script>
<script src="js-yaml.min.js"></script>
<link rel="stylesheet" type="text/css" href="codeurs.css">
<meta charset="UTF-8">
</head>
<body>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<div id="app">
<div class="slideshow" v-if="init">
<div class="slide fade" v-show="currentSlide=='program'">
<h3 class="programme-title">{{ program.title }}</h3>
<h4 class="program-hour">{{ program.displayHour }}</h4>
<div class="program-talk" v-for="talk in program.displayTalks">
<div class="title">{{ talk.title }}</div>
<p class="authors">{{ talk.authors }}
<span v-for="(speaker, index) in talk.speakers">
<span v-if="index != 0">, </span><span>{{ speaker.displayName }}</span>
</span>
</p>
<div class="room" v-if="talk.room!=null">Salle {{ talk.room }}</div>
</div>
</div>
<div class="slide sponsor-slide" v-show="currentSlide=='sponsor'">
<img class="sponsor-img" :src="sponsor.currentSponsor.logo" v-if="sponsor.currentSponsor.logo!=null" />
</div>
<div class="slide" v-show="currentSlide=='twitter'">
<div id="twitter-card"></div>
</div>
</div>
<img src="codeurs-en-seine-logo.png" class="logo"/>
</div>
</body>
<script src="codeurs.js"></script>
</html>