-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmodals.html
More file actions
38 lines (38 loc) · 1.99 KB
/
modals.html
File metadata and controls
38 lines (38 loc) · 1.99 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
<!-- Portfolio Modals -->
{% for post in site.posts %}
<div class="portfolio-modal modal fade" id="portfolioModal{{ post.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>{{ post.title }}</h2>
<hr class="star-primary">
{% if post.youtube %}
<iframe width="560" height="315" src="{{ post.youtube }}" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
{% else %}
<img src="img/portfolio/{{ post.img }}" class="img-responsive img-centered" alt="{{ post.alt }}">
{% endif %}
<p>{{ post.description }}</p>
<ul class="list-inline item-details">
<li>Location: <strong>{{ post.location }}</strong></li>
<li>Date: <strong>{{ post.project-date }}</strong></li>
<li>Category: <strong>{{ post.category }}</strong></li>
</ul>
{% if post.material %}
<p><a href="{{ post.material }}" target="_blank">See presentation material</a></p>
{% endif %}
<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 %}