Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 14 additions & 16 deletions _data/schedule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ events:
speakers: []
- time: 1:30pm
minutes: 90
title: 'Intro to Python | Designing Libraries in Python'
title: '(1) Intro to Python <br/> &mdash;OR&mdash; <br/> (2) Designing Libraries in Python'
style: tutorial
speakers:
- Kelly Chang
- Ariel Rokem
- '(1) Kelly Chang'
- '(2) Ariel Rokem'
- time: 3:00pm
minutes: 30
title: Coffee Break
Expand Down Expand Up @@ -75,11 +75,11 @@ events:
speakers: []
- time: 1:30pm
minutes: 90
title: '[1] Introduction to Git and GitHub | [2] Collaboration using Git'
title: '(1) Introduction to Git and GitHub <br/> &mdash;OR&mdash; <br/> (2) Collaboration using Git'
style: tutorial
speakers:
- Noah C. Benson
- Ariel Rokem
- '(1) Noah C. Benson'
- '(2) Ariel Rokem'
- time: 3:00pm
minutes: 30
title: Coffee Break
Expand Down Expand Up @@ -117,24 +117,22 @@ events:
speakers: []
- time: 1:30pm
minutes: 90
title: '[1] Machine Learning in Python | [2] Deep Learning in Pytorch'
title: '(1) Machine Learning in Python <br/> &mdash;OR&mdash; <br/> (2) Deep Learning in Pytorch'
style: tutorial
speakers:
- Ariel Rokem
- Noah C. Benson
- '(1) Ariel Rokem'
- '(2) Noah C. Benson'
- time: 3:00pm
minutes: 30
title: Coffee Break
style: break
speakers: []
- time: 3:30pm
minutes: 90
title: '[1] Week 1 Group Projects: Work Time | [2] Center for Human Neuroscience visit'
title: '(1) Week 1 Group Projects: Work Time <br/> &mdash;OR&mdash; <br/> (2) Center for Human Neuroscience visit'
style: other
speakers:
- Noah C. Benson
- Ariel Rokem
- John Pyles
- '(2) John Pyles'
Thursday:
- time: 9:00am
minutes: 60
Expand Down Expand Up @@ -205,11 +203,11 @@ events:
speakers: []
- time: 1:30pm
minutes: 90
title: '[1] Python Ecosystem Control with uv | [2] GitHub Actions'
title: '(1) Python Ecosystem Control with uv <br/> &mdash;OR&mdash; <br/> (2) GitHub Actions'
style: lecture
speakers:
- Don Setiawan
- Serge Koudoro
- '(1) Don Setiawan'
- '(2) Serge Koudoro'
- time: 3:00pm
minutes: 30
title: Coffee Break
Expand Down
22 changes: 12 additions & 10 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,20 @@ collaboration sessions on topics of interest.
{% assign fullname = page.forename | append: " " | append: page.surname %}
<div class="splash-instructor-card">
<div class="splash-instructor-card-photo">
<img
{% if page.image %}
src="{{page.image}}"
alt="The profile picture for {{fullname}}"
{% elsif page.github %}
src="https://github.com/{{page.github}}.png"
alt="The GitHub profile picture for {{fullname}}"
{% else %}
src="https://upload.wikimedia.org/wikipedia/commons/a/ac/Default_pfp.jpg"
alt="An anonymous profile picture"
<a href="{{site.baseurl}}/{{page.url}}">
<img
{% if page.image %}
src="{{page.image}}"
alt="The profile picture for {{fullname}}"
{% elsif page.github %}
src="https://github.com/{{page.github}}.png"
alt="The GitHub profile picture for {{fullname}}"
{% else %}
src="https://upload.wikimedia.org/wikipedia/commons/a/ac/Default_pfp.jpg"
alt="An anonymous profile picture"
{% endif %}
/>
</a>
</div>
<p><a href="{{site.baseurl}}/{{page.url}}">{{fullname}}</a></p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ nav {
}
.eventstyle-other {
background: var(--cap-bg-color);
color: #000000;
color: #FFFFFF;
}

/* Accordion for calendars */
Expand Down
Loading