-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodal.html
32 lines (32 loc) · 1.53 KB
/
modal.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
<div class="" id="speakers-1">
<div class="md-content">
<div class="speakers-modal-cont">
<div class="img-cont">
<figure>
<img ng-src="img/speakers/{{ speaker.photo }}" class="img-responsive" alt="slide"/>
</figure>
</div>
<div class="speakers-about-cont">
<h3>{{ speaker.name + " " + speaker.surname }}</h3>
<h4>{{ speaker.bio }}</h4>
<div style="width: 600px;" ng-bind-html="speaker.about | html"></div>
<ul class="speaker-socials list-inline list-unstyled" style="margin-top: 15px;">
<li ng-repeat="(key, social) in speaker.social">
<span ng-if="key == 'rss'">
<a target="_blank" href="{{ social }}"><span class="fa fa-{{ key }}"></span></a>
</span>
<span ng-if="key == 'linkedin'">
<a target="_blank" href="https://{{ key }}.com/in/{{ social }}"><span class="fa fa-{{ key }}"></span></a>
</span>
<span ng-if="key != 'rss' && key != 'linkedin'">
<a target="_blank" href="https://{{ key }}.com/{{ social }}"><span class="fa fa-{{ key }}"></span></a>
</span>
</li>
</ul>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="md-overlay"></div>
<!--Modal box overlay-->