freelancer-theme/_includes/modals.html

40 lines
1.9 KiB
HTML
Raw Normal View History

2014-07-25 21:44:57 +00:00
<!-- Portfolio Modals -->
2014-07-27 09:40:26 +00:00
{% for post in site.posts %}
<div class="portfolio-modal modal fade" id="portfolioModal-{{ post.modal-id }}" tabindex="-1" role="dialog" aria-hidden="true">
2014-07-25 21:44:57 +00:00
<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">
2014-07-27 09:40:26 +00:00
<h2>{{ post.title }}</h2>
2014-07-25 21:44:57 +00:00
<hr class="star-primary">
2014-07-27 09:40:26 +00:00
<img src="img/portfolio/{{ post.img }}" class="img-responsive img-centered" alt="{{ post.alt }}">
<p>{{ post.description }}</p>
2014-07-25 21:44:57 +00:00
<ul class="list-inline item-details">
<li>Client:
2014-07-27 09:40:26 +00:00
<strong><a href="http://startbootstrap.com">{{ post.client }}</a>
2014-07-25 21:44:57 +00:00
</strong>
</li>
<li>Date:
2014-07-27 09:40:26 +00:00
<strong><a href="http://startbootstrap.com">{{ post.project-date }}</a>
2014-07-25 21:44:57 +00:00
</strong>
</li>
<li>Service:
2014-07-27 09:40:26 +00:00
<strong><a href="http://startbootstrap.com">{{ post.category }}</a>
2014-07-25 21:44:57 +00:00
</strong>
</li>
</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>
2014-07-27 09:40:26 +00:00
{% endfor %}