forked from BattModels/BattModels.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (74 loc) · 2.57 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
---
layout: default
title: Home
notitle: true
# groups of columns of {roles: list, width: num, image: bool}
role-tables:
- - roles: [pi, postdoc, masters, staff]
width: 4
image: true
- roles: [phd]
width: 8
image: true
- - roles: [alumni-postdoc, alumni-phd, alumni-masters, alumni-ugrad]
width: 9
image: false
---
<div class="jumbotron">
<h1>Viswanathan Research Group at Carnegie Mellon University</h1>
<p>
Vision: Invent and Optimize Materials, Processes and Devices to Accelerate the Transition to Sustainable Transportation, Aviation, Chemicals and Fuels.
</p>
<img src="img/group-photo.jpg" alt="Group Photo" class="center">
</div>
<div id="research">
<section>
<h2>Research</h2>
<div class="card-columns">
{% for p in site.projects %}
{% if p.status != "inactive" %}
{% include project-card.html project=p %}
{% endif %}
{% endfor %}
</div>
</section>
</div>
<div id="people">
<h2>People</h2>
{% for role-table in page.role-tables %}
<section class="people row justify-content-between">
{% for role-column in role-table %}
<div class="col-md-{{ role-column.width }}">
{% for role in role-column.roles %}
{% include role-people.html role=role image=role-column.image %}
{% endfor %}
</div>
{% endfor %}
</section>
{% endfor %}
</div>
<section>
<div id="community">
<h2>Community</h2>
<p>Our group is involved in several efforts to spur community-building and research dissemination efforts.</p>
<p>Prof. Viswanathan runs the Battery Modeling Webinar Series (BMWS). Find more information <a href="https://www.andrew.cmu.edu/user/venkatv/bmws.html">here</a>.</p>
<p>Dilip has coordianted a Scientific Machine Learning (SciML) course, consisting of talks along with interactive code demonstrations. For more details and schedule, visit <a href="https://www.cmu.edu/aced/sciML.html">this page</a>.</p>
</div>
</section>
<section>
<div id="news">
<h2>News</h2>
<ul class="news list-unstyled">
{% for post in site.posts limit: site.front_page_news %}
{% include news-item.html item=post %}
{% endfor %}
</ul>
{% assign numposts = site.posts | size %}
{% if numposts >= 1 %}
<p>
<span class="fa fa-fw fa-history"></span>
<a href="{{ site.baseurl }}/blog.html">Older posts…</a>
</p>
{% endif %}
</div>
</section>