Initial page based on Agency by http://startbootstrap.com
This commit is contained in:
commit
838774e06d
84 changed files with 8146 additions and 0 deletions
23
_includes/portfolio_grid.html
Normal file
23
_includes/portfolio_grid.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<!-- Portfolio Grid Section -->
|
||||
<section id="portfolio" class="bg-light-gray">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
{% for post in site.posts %}
|
||||
<div class="col-md-4 col-sm-6 portfolio-item">
|
||||
<a href="#portfolioModal{{ post.modal-id }}" class="portfolio-link" data-toggle="modal">
|
||||
<div class="portfolio-hover">
|
||||
<div class="portfolio-hover-content">
|
||||
<i class="fa fa-plus fa-3x"></i>
|
||||
</div>
|
||||
</div>
|
||||
<img src="img/portfolio/{{ post.thumbnail }}" class="img-responsive" alt="">
|
||||
</a>
|
||||
<div class="portfolio-caption">
|
||||
<h4>{{ post.title }}</h4>
|
||||
<p class="text-muted">{{ post.subtitle }}</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
Loading…
Add table
Add a link
Reference in a new issue