forked from jeromelachaud/freelancer-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodals.html
48 lines (48 loc) · 2.36 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!-- 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">
<img src="img/portfolio/{{ post.img }}" class="img-responsive img-centered" alt="{{ post.alt }}">
{% if post.description %}
<p>{{ post.description }}</p>
{% endif %}
<ul class="list-inline item-details">
{% if post.client %}
<li>Client:
<strong><a href="https://ikebanto.github.io">{{ post.client }}</a>
</strong>
</li>
{% endif %}
{% if post.project-date %}
<li>Date:
<strong><a href="https://ikebanto.github.com">{{ post.project-date }}</a>
</strong>
</li>
{% endif %}
{% if post.category %}
<li>Service:
<strong><a href="https://ikebanto.github.io">{{ post.category }}</a>
</strong>
</li>
{% endif %}
</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 %}