-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmodals.html
More file actions
63 lines (61 loc) · 3.28 KB
/
Copy pathmodals.html
File metadata and controls
63 lines (61 loc) · 3.28 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!-- Portfolio Modals -->
{% for event in site.events %}
<div class="portfolio-modal modal fade" id="portfolioModal{{ event.modal-id }}" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>{{ event.heading }}</h2>
<hr class="star-primary">
<img src="img/about/{{ event.posterpic }}.jpg" class="img-responsive img-centered" alt="event">
<p>{{ event.description }}</p>
<h1>Speakers</h1>
<hr class="star-primary">
<ul class="speakerlist">
{% for speaker in event.talk %}
<li>
<div class="speaker-image">
<img src="img/speakers/{{ speaker.img }}.jpg" alt="Event Poster">
</div>
<h4>{{speaker.speaker}}</h4>
<hr class="star-primary">
<h6>{{speaker.intro}}</h6>
<p>Topic: <strong>{{speaker.topic}}</strong></p>
<ul class="list-inline item-details">
<li>
<strong><a target="_blank" href={{speaker.videos}}>Talk</a>
</strong>
</li>
<li>
<strong><a target="_blank" href={{speaker.slides}}>Slides</a>
</strong>
</li>
</ul>
</li>
{% endfor %}
</ul>
<ul class="list-inline item-details">
<li>Event Link
<strong><a href={{event.link}}><i class="fa fa-facebook"></i></a>
</strong>
</li>
<li>Date:
<strong>{{ event.date}}</a>
</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
{% endfor %}