forked from Hackerbone/Hackerbone.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojects.html
37 lines (35 loc) · 1014 Bytes
/
projects.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
34
35
36
37
---
layout: default
---
<a id="backtotop_button"></a>
<section class="page-title page-title-4 bg-secondary">
<div class="container">
<h3 class="uppercase mb0">Student Projects</h3>
</div>
</section>
<section class="projects pt48">
<div class="container">
<!-- Loader -->
<div class="row masonry-loader fadeOut">
<div class="col-sm-12 text-center">
<div class="spinner"></div>
</div>
</div>
<!-- Projects -->
<div class="row masonry masonryFlyIn fadeIn">
{% for item in site.data.projects %}
<div class="col-md-3 col-sm-6 masonry-item project fadeIn">
<div class="image-tile inner-title hover-reveal text-center">
<a href="{{item.link}}">
<img src="./img/projects/{{item.img}}" id="img_project">
<div class="title">
<h4>{{ item.name }}</h4>
<h5>{{ item.creator }}</h5>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</section>