-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex1.html
executable file
·85 lines (68 loc) · 2.51 KB
/
index1.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
layout: default
---
{% assign sorted_members = site.data.members | sort: 'id' %}
{% assign current_members = sorted_members | where:"status","current" %}
{% assign visiting = sorted_members | where:"status","visiting" %}
{% assign alumni = sorted_members | where:"status","alumni" %}
{% assign master_alumni = sorted_members | where:"status","master_alumni" %}
{% assign ugrad_alumni = sorted_members | where:"status","ugrad_alumni" %}
{% assign faculty = sorted_members | where:"status","shifu" %}
{% assign goel = faculty | first %}
<div class="row">
<div class="col-sm-12">
<h3>The Smart Sensing for Humans (SmaSH) Lab develops innovative sensing systems to solve problems of immediate impact related to health, accessibility, novel interactions, activity recognition, and technologies for the developing world. We are an interdisciplinary team of students who tackle challenging research problems and develop impactful solutions using our expertise in hardware development, signal processing, computer vision, and machine learning. We build and evaluate deployable solutions and test their utility in the real world.
</h3>
<h3>
We are always looking to work with great students. If you are interested in contributing to research in our lab, fill this <a href="https://forms.gle/yCU88JFYAMZSsT8X8" target="_blank"> form</a> out.
</h3>
</div>
</div>
<h1>RESEARCH HIGHLIGHTS</h1>
{% assign sorted_pubs = site.publications | sort: 'date'%}
<div class="row">
{% for pub in sorted_pubs reversed%}
{% if pub.onhomepage==true %}
<!-- {{pub.name}} -->
<div class="project-badge col-md-4 col-sm-4 col-xs-4">
<div class="image">
<img src="{{pub.image}}"/>
{% if pub.date > site.time %}
<div class = "coming_soon_overlay">
<div class = "coming_soon_text">Coming Soon!</div>
{% endif %}
{% if pub.date > site.time %}
</div>
{% endif %}
<div class="overlay">
{% if pub.date < site.time %}
<a href="{{ pub.url }}">
{% endif %}
<div class="pitch">
{{Text}}
{% if pub.blurb %}
{{pub.blurb}}
{% else %}
{{pub.title}}
{% endif %}
</div></a>
</div>
</div>
<div class="details">
<div class="name">{{pub.name}}</div>
</div>
</div>
{% endif %}
{% endfor %}
<script>
$(document).ready(function(){
$('.bxslider').bxSlider({
adaptiveHeight: false,
speed: 500,
captions: true,
auto: true,
pause: 5000,
autoControls: true
});
});
</script>