diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 00000000..818bd47a --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +3.0.6 diff --git a/Gemfile b/Gemfile index 0f1888eb..54afb7fe 100644 --- a/Gemfile +++ b/Gemfile @@ -3,3 +3,8 @@ source "https://rubygems.org" gem "github-pages", group: :jekyll_plugins gem "jekyll-include-cache", group: :jekyll_plugins gem "jekyll", "=3.9.3" +gem 'csv' + + + +gem "webrick", "~> 1.8" diff --git a/_config.yml b/_config.yml index 2f57e0fa..a07f3024 100644 --- a/_config.yml +++ b/_config.yml @@ -22,7 +22,7 @@ subtitle : # site tagline that appears below site title in masth name : "Your Name" description : "An amazing website." url : # the base hostname & protocol for your site e.g. "https://mmistakes.github.io" -baseurl : # the subpath of your site, e.g. "/blog" +baseurl : /visualmachines_testing.github.io repository : # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes" teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png" logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png" diff --git a/_data/slides.yml b/_data/slides.yml new file mode 100644 index 00000000..4e81182d --- /dev/null +++ b/_data/slides.yml @@ -0,0 +1,9 @@ +- title: Equitable Sensing of the Human Body + text_line1: Light-based sensors that are robust to skin tone, body mass + text_line2: and other phenotypes can transform precision medicine and human interaction. + image_link: "/assets/images/website_chosen_square.png" + +- title: "I give students A" + text_line1: "Everyone gets an A in my class" + text_line2: "no matter what" + image_link: "/assets/images/people/achuta_kadambi.png" \ No newline at end of file diff --git a/_pages/home_page.md b/_pages/home_page.md index e1755174..71781812 100644 --- a/_pages/home_page.md +++ b/_pages/home_page.md @@ -12,23 +12,151 @@ head_scripts: ---
-
-
- +
+ {% assign slides = site.data.slides %} + {% for slide in slides %} +
+
-
Equitable Sensing of the Human Body
-
Light-based sensors that are robust to skin tone, body mass -
and other phenotypes can transform precision medicine and human interaction. -
+
{{ slide.title }}
+
{{ slide.text_line1 }}
+
{{ slide.text_line2 }}
+ {% endfor %} + +
<
+
>
+ + + + + + + + +
+ + +
News
+ + + + +
Aug 2023: Diffusion w/ Perspective appears in SIGGRAPH Asia
Rishi's first author paper appears in the journal proceedings of SIGGRAPH Asia
diff --git a/_pages/people.md b/_pages/people.md index fc0dcfa1..cee4a5c9 100644 --- a/_pages/people.md +++ b/_pages/people.md @@ -5,139 +5,139 @@ sitemap: false permalink: /people/ --- +
Headshot
@row -## PI +## Faculty -@row -Headshot -@column -
-
Achuta Kadambi
-
Leader, Visual Machines Group
-
Assistant Professor, UCLA
Electrical Engineering and Computer Science
PhD, Massachusetts Institute of Technology
- -
+ @row ## Graduate / Post doc -{% assign number_printed = 0 %} -{% for member in site.data.grad_team_members %} -{% assign even_odd = number_printed | modulo: 4 %} -{% if even_odd == 0 %} -@row -{% endif %} -{% if even_odd != 0 %} -@column -{% endif %} -
- - Insert photo - - -
-   - - {{ member.name }} - -
-   - - -{% assign number_printed = number_printed | plus: 1 %} -{% endfor %} -{% assign even_odd_dummy = number_printed | modulo: 4 %} -{% if even_odd_dummy != 0 %} -{% assign number_print_left = 4 | minus:even_odd_dummy %} -{% for num in (1..number_print_left) %} -@column -{% endfor %} -{% endif %} @row ## Undergraduate -{% assign number_printed = 0 %} -{% for member in site.data.undergrad_team_members %} -{% assign even_odd = number_printed | modulo: 4 %} -{% if even_odd == 0 %} -@row -{% endif %} -{% if even_odd != 0 %} -@column -{% endif %} -
- - Insert photo - - -
-   - - {{ member.name }} - -
-   - - -{% assign number_printed = number_printed | plus: 1 %} -{% endfor %} -{% assign even_odd_dummy = number_printed | modulo: 4 %} -{% if even_odd_dummy != 0 %} -{% assign number_print_left = 4 | minus:even_odd_dummy %} -{% for num in (1..number_print_left) %} -@column -{% endfor %} -{% endif %} diff --git a/_sass/minimal-mistakes/_page.scss b/_sass/minimal-mistakes/_page.scss index 5a262f8e..d06ac477 100644 --- a/_sass/minimal-mistakes/_page.scss +++ b/_sass/minimal-mistakes/_page.scss @@ -19,6 +19,8 @@ } } + + body { display: -webkit-box; display: -ms-flexbox; @@ -557,3 +559,6 @@ body { } } } + + +