-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (32 loc) · 1.2 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>My Talks</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.js"></script>
<script type="module" src="https://unpkg.com/[email protected]/lit-html.js"></script>
<style>
.conference-name {
color: rgb(0, 0, 0);
}
</style>
</head>
<body>
<div class="ui container">
<div class="ui basic clearing segment">
<h1 class="ui left floated header" style="padding-bottom: 0">My Talks</h1>
<a class="ui primary right floated button" href="https://forms.gle/wXF9YDizRDA3w9odA">
Leave feedback 🙏
</a>
</div>
<hr/>
<div class="ui basic segment">
<div id="cardContainer" class="ui three column stackable grid container"></div>
</div>
<script type="module" src="assets/build-presentation-list.js"></script>
</div>
</body>
</html>