-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpapers.html
More file actions
36 lines (31 loc) · 1.01 KB
/
papers.html
File metadata and controls
36 lines (31 loc) · 1.01 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
---
title: Workshop
layout: post
---
<script src='https://slideslive.com/embed_presentation.js'></script>
<!-- From _data/papers.cvs -->
{% for talk in site.data.papers %}
<div class="container">
<div class="card" >
<div class="card-body">
<h3 class="card-title">{{talk.title}}</h3>
<h6 class="card-subtitle mb-2 text-muted">
{{talk.speaker}}
</h6>
<center>
<!-- <a class="card-link" {{talk.pdf}}">Paper</a> -->
</center>
<p></p>
</div>
</div>
</div>
<!-- SlidesLive -->
<div id="presentation-embed-{{talk.slide_id}}" class="container container-sm"></div>
<script>
embed = new SlidesLiveEmbed('presentation-embed-{{talk.slide_id}}', {
presentationId: '{{talk.slide_id}}',
autoPlay: false, // change to true to autoplay the embedded presentation
verticalEnabled: true
});
</script>
{% endfor %}