You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.0 KiB
HTML

10 years ago
<!-- Portfolio Grid Section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Portfolio</h2>
<hr class="star-primary">
</div>
<div class="row">
10 years ago
{% 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>
10 years ago
</div>
10 years ago
<img src="img/portfolio/{{ post.img }}" class="img-responsive" alt="{{ post.alt }}">
</a>
</div>
{% endfor %}
10 years ago
</div>
</div>
</section>