-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathteam.html
29 lines (25 loc) · 873 Bytes
/
team.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
<section class="no-padding" id="team">
<div class="container-fluid">
<div class="row no-gutter popup-gallery">
{% for hacker in site.hackers %}
{% if hacker.show %}
<div class="col-lg-4 col-sm-6">
<a href="img/portfolio/fullsize/1.jpg" class="portfolio-box">
<img src="{{hacker.profile}}" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
{{ hacker.title }}
</div>
<div class="project-name">
{{ hacker.excerpt }}
</div>
</div>
</div>
</a>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</section>