forked from y7kim/agency-jekyll-theme
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodals.html
29 lines (29 loc) · 1.45 KB
/
modals.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
<!-- 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-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal"><img src="img/close-icon.svg" alt="Close modal" /></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="modal-body">
<!-- Project Details Go Here-->
<h2>{{ post.title }}</h2>
<img class="img-fluid d-block mx-auto" src="img/portfolio/{{ post.img }}" alt="" />
<p>{{ post.description }}</p>
{% if post.category == 'kaihi' %}
{% include fee.html %}
{% endif %}
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times mr-1"></i>
Close Dialog
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endfor %}