Merge pull request #78 from watkinsmatthewp/master
Only include elements that are specified in modals
This commit is contained in:
commit
d079055fa7
|
@ -15,20 +15,28 @@
|
|||
<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><a href="http://startbootstrap.com">{{ post.client }}</a>
|
||||
</strong>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if post.project-date %}
|
||||
<li>Date:
|
||||
<strong><a href="http://startbootstrap.com">{{ post.project-date }}</a>
|
||||
</strong>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if post.category %}
|
||||
<li>Service:
|
||||
<strong><a href="http://startbootstrap.com">{{ post.category }}</a>
|
||||
</strong>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue