-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathresearch.html
More file actions
executable file
·60 lines (54 loc) · 1.59 KB
/
Copy pathresearch.html
File metadata and controls
executable file
·60 lines (54 loc) · 1.59 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
layout: default
title: Research Projects
section_id: research
---
<div class='full parallax' style='background-image: url(images/@stock/portfolio-header-bg.jpg); color: #fff;'>
<div class='row'>
<div class='large-12 columns'>
{% include section-header.html title="Research Projects" tagline="Have a look at our works" color="#fff" class="big" %}
</div>
</div>
<div class='four spacing'></div>
</div>
<div class='full'>
<div class='row'>
<div class='mod modGallery'>
<div class='gallery-nav'>
<ul>
<li class='current'>
<a data-cat='all' href='#'>All</a>
</li>
<li>
<a data-cat='map' href='#'>Map Understanding</a>
</li>
<li>
<a data-cat='health' href='#'>Public Health</a>
</li>
<li>
<a data-cat='transportation' href='#'>Transportation</a>
</li>
<li>
<a data-cat='others' href='#'>Others</a>
</li>
</ul>
</div>
<ul class='gallery large-block-grid-4 medium-block-grid-3 small-block-grid-2'>
{% for work in site.data.research %}
<li class="{{ work.klass }}">
<a href='{{ work.link_to }}'>
<img alt="" src="{{ work.image }}" />
<div class='overlay'>
<div class='thumb-info'>
<h3>{{ work.title }}</h3>
<p>{{ work.desc }}</p>
</div>
</div>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class='four spacing'></div>
</div>