-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
121 lines (102 loc) · 3.31 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
layout: default
title: MLC Robotics
categories:
- home
---
<div class="row">
<div class="col-lg-12">
<object class="pull-left biglogo" data="{{ site.baseurl }}/images/logo.svg" type="image/svg+xml"></object>
<div class="bigtitle logobox">
Robotics Interest Group
</div>
</div>
</div>
<div class="bigspacer"></div>
<div class="row">
<div class="col-lg-12">
<div class="smallhead">
<p>
Welcome to the <a href="https://mlcollective.org/">MLC</a> robotics interest group!
</p>
<p>
Our interest group explores the application of learning based approaches to robotics. We do this through organizing online events, creating informative <a href="{{ site.baseurl }}/blog">blog posts</a>, answering questions on our <a href="https://discord.com/channels/785992161132806174/981295569198805053">discord channel</a>, fostering research collaborations between our members and participating in the broader robotics research community.
</p>
<p>
If you are new to the field of robotics we highly encourage you to join us. Many of us enter the field of robotics thanks to the help/guidance of others, we hope that this group can be a resource to new/aspiring roboticists.
</p>
</div>
</div>
</div>
<div class="bigspacer"></div>
<div class="bigspacer"></div>
<div class="row">
<div class="col-lg-12">
<div class="head">
<h1>News</h1>
</div>
<div class="spacer"></div>
</div>
</div>
<div class="bigspacer"></div>
<div class="row">
<div class="col-lg-12">
<div class="smallhead">
<p>
<b>June 2022</b> The MLC robotics interest group is created. <br><br>
</p>
</div>
</div>
</div>
<div class="bigspacer"></div>
<div class="bigspacer"></div>
<div class="row">
<div class="col-lg-12">
<div class="head">
<h1>Upcoming Events</h1>
</div>
<div class="spacer"></div>
</div>
</div>
<div class="bigspacer"></div>
<div class="row">
<div class="col-lg-12">
<div class="smallhead">
<p>
<b>10/02/2022 09:00-10:00 PST</b> Reading Group Session (<a href="https://nlmap-saycan.github.io/">Open-vocabulary Queryable Scene Representations for Real World Planning
</a>) <br> <br>
</p>
</div>
</div>
</div>
<div class="bigspacer"></div>
<div class="bigspacer"></div>
<div class="row">
<div class="col-lg-12">
<div class="head">
<h1>Active Members</h1>
</div>
<div class="spacer"></div>
</div>
</div>
<div class="bigspacer"></div>
{% for member in site.categories.members reversed %}
{% if member.alumni != true %}
{% cycle 'add rows': '<div class="row">', '', '' %}
<div class="col-lg-4 memberbox">
<div class="media">
<a class="float-left" href="{{ site.baseurl }}{{ member.url }}">
<img width=160 class="mr-3" src="{{site.baseurl}}{{ member.image }}">
</a>
<div class="media-body">
<div class="head mb-1"><a href="{{ site.baseurl }}{{ member.url }}" class="off">{{ member.title }}</a></div>
<p class="note">{{ member.robot }}</p>
</div>
</div>
<div class="bigspacer"></div>
<div class="bigspacer"></div>
</div>
{% cycle 'close rows': '', '', '</div>' %}
{% endif %}
{% endfor %}
{% cycle 'close rows': '', '</div>', '</div>' %}