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.

48 lines
1.5 KiB
HTML

2 years ago
<!-- 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">
10 years ago
</div>
2 years ago
</div>
10 years ago
</div>
2 years ago
<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>{{ post.client }}</strong>
</li>
{% endif %}
{% if post.project-date %}
<li>Date:
<strong>{{ post.project-date }}</strong>
</li>
{% endif %}
{% if post.category %}
<li>Service:
<strong>{{ post.category }}</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 %}