-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·33 lines (31 loc) · 1.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
layout: default
title: CEOs
---
<!-- Portfolio Grid Section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Chief Executive Officer</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
{% for post in site.posts %}
<div class="col-sm-4 portfolio-item">
<a href="{{site.baseurl}}{{post.url}}" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-2x">{{post.title}}</i>
</div>
</div>
<div class="box">
<img src="{{site.baseurl}}/images/{% if post.image %}{{post.image}}{% else %}profile.png{% endif %}" alt="{{ page.ceo }}" class="img-responsive">
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</section>