Skip to content

Commit 2bdfaec

Browse files
authored
Added 2026 team and Open Day 2026 page (#34)
2 parents 699156b + cd056c1 commit 2bdfaec

File tree

86 files changed

+194
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+194
-3
lines changed

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ collections:
7070
events:
7171
output: true
7272
# permalink: /events/:title/
73+
open_day:
74+
output: true
7375

7476
defaults:
7577
- scope:

_data/team/2026.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
year: 2026
2+
convenors:
3+
- name: "Avik Das"
4+
bio:
5+
email: avikdas@iisc.ac.in
6+
picture: "/assets/img/team/2026/avik.webp"
7+
8+
- name: "Sameer Rajput"
9+
bio:
10+
email: sameerr@iisc.ac.in
11+
picture: "/assets/img/team/2026/sameer.webp"
12+
13+
- name: "Vidhi Chauhan"
14+
bio:
15+
email: vidhic@iisc.ac.in
16+
picture: "/assets/img/team/2026/vidhi.webp"
17+
18+
- name: "Vinay Kaushik"
19+
bio:
20+
email: vinaykaushik@iisc.ac.in
21+
picture: "/assets/img/team/2026/vinay.webp"
22+
23+
volunteer-team-name: "Core Team"
24+
25+
volunteers:
26+
27+
- name: "Dhritishman Dutta"
28+
email: dhritishmand@iisc.ac.in
29+
picture: "/assets/img/team/2026/dutta.webp"
30+
31+
- name: "Kaustav Prakash Sarma"
32+
email: kaustavs@iisc.ac.in
33+
picture: "/assets/img/team/2026/kausty.webp"
34+
35+
- name: "Ritabrata Saha"
36+
email: ritabratas@iisc.ac.in
37+
picture: "/assets/img/team/2026/rito.webp"
38+
39+
40+
41+
# - name: "Volunteer 1"
42+
# email: volunteer1@example.com
43+
# picture:
Lines changed: 14 additions & 0 deletions

_lectures/cosmology/2026-03-03-cosmo-lec-1.md

Lines changed: 1 addition & 1 deletion
Lines changed: 19 additions & 0 deletions

_lectures/hep-group/index.md

Lines changed: 1 addition & 0 deletions

_open_day/open-day-2025.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: page
3+
title: Open Day 2025
4+
permalink: /open-day-2025/
5+
year: 2025
6+
image: /assets/img/open_day/2025/gallery/team.webp
7+
order: 7
8+
---
9+
10+
<section>
11+
<h2 class="section-title">Posters</h2>
12+
<div class="image-board">
13+
{% assign open_day_posters = site.static_files | where_exp: "file", "file.path contains '/assets/img/open_day/2025/posters/'" %}
14+
{% for poster in open_day_posters %}
15+
<img src="{{ poster.path }}" alt="{{ poster.name }}">
16+
{% endfor %}
17+
</div>
18+
</section>
19+
20+
<section>
21+
<h2 class="section-title">Gallery</h2>
22+
<div class="image-board">
23+
{% assign open_day_images = site.static_files | where_exp: "file", "file.path contains '/assets/img/open_day/2025/gallery/'" %}
24+
{% for image in open_day_images %}
25+
<img src="{{ image.path }}" alt="Open Day Image">
26+
{% endfor %}
27+
</div>
28+
</section>

_open_day/open-day-2026.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: page
3+
title: Open Day 2026
4+
permalink: /open-day-2026/
5+
year: 2026
6+
image: /assets/img/open_day/2026/gallery/team2.webp
7+
order: 7
8+
---
9+
10+
<section>
11+
<h2 class="section-title">Posters</h2>
12+
<div class="image-board">
13+
{% assign open_day_posters = site.static_files | where_exp: "file", "file.path contains '/assets/img/open_day/2026/posters/'" %}
14+
{% for poster in open_day_posters %}
15+
<img src="{{ poster.path }}" alt="{{ poster.name }}">
16+
{% endfor %}
17+
</div>
18+
</section>
19+
20+
<section>
21+
<h2 class="section-title">Gallery</h2>
22+
<div class="image-board">
23+
{% assign open_day_images = site.static_files | where_exp: "file", "file.path contains '/assets/img/open_day/2026/gallery/'" %}
24+
{% for image in open_day_images %}
25+
<img src="{{ image.path }}" alt="Open Day Image">
26+
{% endfor %}
27+
</div>
28+
</section>

_sass/open-day.scss

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,36 @@
1313
// .open-day {
1414
// columns: 1;
1515
// }
16-
// }
16+
// }
17+
18+
.open-day-item {
19+
width: 100%; /* banner spans the page width */
20+
margin: 40px 0;
21+
}
22+
23+
.open-day-item a {
24+
text-decoration: none;
25+
color: inherit;
26+
display: block;
27+
}
28+
29+
.open-day-item img {
30+
width: 100%;
31+
height: 350px; /* banner height - adjust */
32+
object-fit: cover; /* crop nicely like a banner */
33+
border-radius: 10px; /* optional */
34+
display: block;
35+
}
36+
37+
.open-day-item p {
38+
text-align: center;
39+
font-size: 1.4rem;
40+
margin-top: 10px;
41+
font-weight: 600;
42+
}
43+
44+
.open-day-item {
45+
list-style: none;
46+
padding-left: 0;
47+
margin-left: 0;
48+
}
45.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)