Skip to content

Commit

Permalink
Updates website
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-sudo committed Oct 26, 2024
1 parent 4e2a145 commit 047465c
Show file tree
Hide file tree
Showing 10 changed files with 80 additions and 66 deletions.
7 changes: 4 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,11 @@ GEM
strscan (>= 3.0.9)
rouge (4.2.1)
safe_yaml (1.0.5)
sass-embedded (1.77.0-aarch64-linux-gnu)
sass-embedded (1.77.0-aarch64-linux)
google-protobuf (>= 3.25, < 5.0)
sass-embedded (1.77.0-arm64-darwin)
google-protobuf (>= 3.25, < 5.0)
sass-embedded (1.77.0-x86_64-linux-gnu)
sass-embedded (1.77.0-x86_64-linux)
google-protobuf (>= 3.25, < 5.0)
sax-machine (1.3.2)
strscan (3.1.0)
Expand All @@ -196,7 +196,8 @@ GEM
PLATFORMS
aarch64-linux
arm64-darwin-23
x86_64-linux-gnu
arm64-darwin-24
x86_64-linux

DEPENDENCIES
classifier-reborn
Expand Down
21 changes: 12 additions & 9 deletions _data/team.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,39 @@
- name: Subhadeep Sarkar
role: admin
image: /assets/img/sarkar_cropped.png
designation: Assistant Professor of Computer Science
designation: Assistant Professor
email: subhadeep@brandeis.com
office: "1234 Office Address"
office1: "Volen 259, 415 South Street"
office2: "Waltham, MA 02453"
- name: Shubham Kaushik
role: member
image: /assets/img/shubham_kaushik.jpg
designation: PhD Researcher
email: kaushiks@brandeis.edu
office: "5678 Office Address"
office1: "Volen 110, 417 South Street"
office2: "Waltham, MA 02453"
- name: James Chen
role: member
image: /assets/img/james_chen.jpeg
designation: PhD Researcher
email: boaochen@brandeis.edu
office: "91011 Office Address"
office1: "Volen 111, 417 South Street"
office2: "Waltham, MA 02453"
- name: Arpita Saha
role: member
image: /assets/img/arpita_saha.png
designation: Researcher
email: arpitasaha1996@gmail.com
office: "91011 Office Address"
# email: arpitasaha1996@gmail.com
# office: "91011 Office Address"
- name: Alexander Ott
role: member
image: /assets/img/alexander_ott.jpg
designation: Researcher
email: aott01@protonmail.ch
office: "91011 Office Address"
email: alexanderott@brandeis.edu
# office: "91011 Office Address"
- name: Yu-Cheng Huang
role: member
image: /assets/img/yuchen_huang.jpg
designation: Researcher
email: ychuang2@bu.edu
office: "91011 Office Address"
# office: "91011 Office Address"
2 changes: 2 additions & 0 deletions _includes/contact.liquid
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<div class="contact-info" id="contact">
<div class="contact-info-box">
<h2>Find Us</h2>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2947.81341507013!2d-71.26054922336338!3d42.367815534610806!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89e3833e07e5a11f%3A0x811cd0fc044f65ff!2sBrandeis%20University%20Graduate%20School%20of%20Arts%20and%20Sciences!5e0!3m2!1sen!2scl!4v1718342640339!5m2!1sen!2scl" width="600" height="300" style="border:0; margin:10px" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
20 changes: 10 additions & 10 deletions _includes/header.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@
{% endif %}
</a>
</li>

<!-- News -->
<li class="nav-item {% if page.permalink == '/' %}active{% endif %}">
<a class="nav-link" href="{{ '#news' | relative_url }}">
News
{% if page.permalink == '#news' %}
<span class="sr-only">(current)</span>
{% endif %}
</a>
</li>

<!-- Research -->
<li class="nav-item {% if page.permalink == '/' %}active{% endif %}">
Expand All @@ -49,16 +59,6 @@
</a>
</li>

<!-- News -->
<li class="nav-item {% if page.permalink == '/' %}active{% endif %}">
<a class="nav-link" href="{{ '#news' | relative_url }}">
News
{% if page.permalink == '#news' %}
<span class="sr-only">(current)</span>
{% endif %}
</a>
</li>

<!-- Team -->
<li class="nav-item {% if page.permalink == '/' %}active{% endif %}">
<a class="nav-link" href="{{ '#team' | relative_url }}">
Expand Down
4 changes: 3 additions & 1 deletion _includes/research.liquid
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<section class="research-agenda" id="research">
<div class="research-box">
<div class="research"><h1>{{ page.heading }}</h1></div>
<div class="research"><p>{{ page.small_description }}</p></div>
<div class="card-container">
Expand All @@ -22,5 +23,6 @@
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</section>
10 changes: 5 additions & 5 deletions _includes/team.liquid
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
<section class="team-section" id="team">
<h2>Team</h2>
<div class="admin-container">
<div class="team-container">
{% for member in site.data.team %}
{% if member.role == 'admin' %}
<div class="admin-member">
<img src="{{ member.image }}" alt="{{ member.name }}" class="team-photo">
<div class="member-info">
<div class="member-name">{{ member.name }}</div>
<p>{{ member.designation }}</p>
<p>{{ member.designation }}<br>{{ member.email }}<br>{{ member.office1 }}<br>{{ member.office2 }}</p>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<div class="team-container members-container">
{% comment %} </div>
<div class="team-container"> {% endcomment %}
{% for member in site.data.team %}
{% if member.role != 'admin' %}
<div class="team-member">
<img src="{{ member.image }}" alt="{{ member.name }}" class="team-photo">
<div class="member-info">
<div class="member-name">{{ member.name }}</div>
<p>{{ member.designation }}</p>
<p>{{ member.designation }}<br>{{ member.email }}<br>{{ member.office1 }}<br>{{ member.office2 }}</p>
</div>
</div>
{% endif %}
Expand Down
6 changes: 1 addition & 5 deletions _layouts/about.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ layout: default
<div class="banner-text">
<div class="row">
<h1 class="banner-text-item"><span class="logo-initial">S</span>mart and <span class="logo-initial">S</span>calable <span class="logo-initial">D</span>ata <span>S</span>ystems <span>L</span>ab</h1>
<h2>@ Michtom School of Computer Science</h2>
<p class="banner-text-description">{{ page.description }}</p>
<button class="read-more">
READ MORE
</button>
<h2>@ Department of Computer Science | Brandeis University</h2>
</div>
</div>
</section>
Expand Down
4 changes: 2 additions & 2 deletions _layouts/default.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
{% endif %}
</div>
</div>
{% include research.liquid %}

{% include news.liquid %}

{% include research.liquid %}

{% include team.liquid %}

Expand Down
Loading

0 comments on commit 047465c

Please sign in to comment.