-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio_grid.html
26 lines (25 loc) · 1.04 KB
/
portfolio_grid.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
<!-- Portfolio Grid Section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Product</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
{% for post in site.posts %}
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal-{{ post.modal-id }}" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/{{ post.img }}" class="img-responsive" alt="{{ post.alt }}">
</a>
</div>
{% endfor %}
</div>
</div>
</section>