-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e7efb2f
Showing
157 changed files
with
56,931 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Sample workflow for building and deploying a Jekyll site to GitHub Pages | ||
name: Deploy Jekyll with GitHub Pages dependencies preinstalled | ||
|
||
on: | ||
# Runs on pushes targeting the default branch | ||
push: | ||
branches: | ||
- main | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
# Build job | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
- name: Build with Jekyll | ||
run: bundle exec jekyll build | ||
env: | ||
JEKYLL_ENV: production | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: _site/ | ||
|
||
# Deployment job | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
_site/ | ||
.sass-cache/ | ||
.jekyll-cache/ | ||
.jekyll-metadata |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.2.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
business-frontpage.webjeda.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
# gem "rails" | ||
|
||
gem "jekyll", "~> 4.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
addressable (2.8.5) | ||
public_suffix (>= 2.0.2, < 6.0) | ||
colorator (1.1.0) | ||
concurrent-ruby (1.2.2) | ||
em-websocket (0.5.3) | ||
eventmachine (>= 0.12.9) | ||
http_parser.rb (~> 0) | ||
eventmachine (1.2.7) | ||
ffi (1.16.3) | ||
forwardable-extended (2.6.0) | ||
google-protobuf (3.25.0-arm64-darwin) | ||
http_parser.rb (0.8.0) | ||
i18n (1.14.1) | ||
concurrent-ruby (~> 1.0) | ||
jekyll (4.3.2) | ||
addressable (~> 2.4) | ||
colorator (~> 1.0) | ||
em-websocket (~> 0.5) | ||
i18n (~> 1.0) | ||
jekyll-sass-converter (>= 2.0, < 4.0) | ||
jekyll-watch (~> 2.0) | ||
kramdown (~> 2.3, >= 2.3.1) | ||
kramdown-parser-gfm (~> 1.0) | ||
liquid (~> 4.0) | ||
mercenary (>= 0.3.6, < 0.5) | ||
pathutil (~> 0.9) | ||
rouge (>= 3.0, < 5.0) | ||
safe_yaml (~> 1.0) | ||
terminal-table (>= 1.8, < 4.0) | ||
webrick (~> 1.7) | ||
jekyll-sass-converter (3.0.0) | ||
sass-embedded (~> 1.54) | ||
jekyll-watch (2.2.1) | ||
listen (~> 3.0) | ||
kramdown (2.4.0) | ||
rexml | ||
kramdown-parser-gfm (1.1.0) | ||
kramdown (~> 2.0) | ||
liquid (4.0.4) | ||
listen (3.8.0) | ||
rb-fsevent (~> 0.10, >= 0.10.3) | ||
rb-inotify (~> 0.9, >= 0.9.10) | ||
mercenary (0.4.0) | ||
pathutil (0.16.2) | ||
forwardable-extended (~> 2.6) | ||
public_suffix (5.0.3) | ||
rb-fsevent (0.11.2) | ||
rb-inotify (0.10.1) | ||
ffi (~> 1.0) | ||
rexml (3.2.6) | ||
rouge (4.2.0) | ||
safe_yaml (1.0.5) | ||
sass-embedded (1.69.5-arm64-darwin) | ||
google-protobuf (~> 3.23) | ||
terminal-table (3.0.2) | ||
unicode-display_width (>= 1.1.1, < 3) | ||
unicode-display_width (2.5.0) | ||
webrick (1.8.1) | ||
|
||
PLATFORMS | ||
arm64-darwin-22 | ||
|
||
DEPENDENCIES | ||
jekyll (~> 4.3) | ||
|
||
BUNDLED WITH | ||
2.4.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2013-2019 Blackrock Digital LLC | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Scientific Foundation Models | ||
|
||
Learn more at our website [scifm.ai](https://scifm.ai)! | ||
|
||
Thanks to [Blackrock Digital LLC.](https://github.com/BlackrockDigital/startbootstrap-business-frontpage) for a great starter template! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
title: Scientific Foundation Models | ||
navtitle: Scientific Foundation Models | ||
description: | | ||
# disabled because we are using a custom domain | ||
#baseurl: /business-frontpage | ||
|
||
color-scheme: "mediumseagreen" # the scheme can be any HEX code like "#00aa55" | ||
|
||
sass: | ||
sass_dir: /assets/css/_sass | ||
style: compressed | ||
|
||
include: | ||
- _pages | ||
- _projects | ||
|
||
exclude: | ||
- .sass-cache | ||
|
||
analytics: | ||
gtag: G-DGCRY7J6T8 | ||
|
||
# make pages for the _projects folder | ||
collections: | ||
projects: | ||
output: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
- title: Home | ||
link: / | ||
|
||
- title: About Us | ||
link: /about/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
venkvis: | ||
display_name: "Venkat Viswanathan" | ||
webpage: "https://www.andrew.cmu.edu/user/venkatv/index.html#" | ||
image: assets/img/venkvis.png | ||
bio: Associate Professor of Mechanical Engineering, Carnegie Mellon University | ||
email: "venkvis [at] umich [dot] edu" | ||
|
||
awadell: | ||
display_name: "Alex Wadell" | ||
webpage: "https://www.linkedin.com/in/alexiuswadell/" | ||
bio: Ph.D. Student, Mechanical Engineering, University of Michigan | ||
image: assets/img/awadell.jpg | ||
email: "awadell [at] umich [dot] edu" | ||
|
||
abhutani: | ||
display_name: "Anoushka Bhutani" | ||
image: assets/img/abhutani.png | ||
bio: Ph.D. Student, Mechanical Engineering, University of Michigan | ||
email: "abhutani [at] unmich [dot] edu" | ||
|
||
asebasti: | ||
display_name: "Amal S Sebastian" | ||
role: phd | ||
image: assets/img/asebasti.jpeg | ||
bio: Ph.D. Student, Aerospace Engineering, University of Michigan | ||
webpage: "https://amalss18.github.io/" | ||
email: asebasti [at] umich [dot] edu | ||
|
||
shangzhu: | ||
display_name: "Shang Zhu" | ||
image: assets/img/shangzhu.jpeg | ||
bio: Ph.D. Candidate, Mechanical Engineering, University of Michigan | ||
webpage: "https://www.linkedin.com/in/shang-zhu-0935a4153/" | ||
email: shangzhu [at] umich [dot] edu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
--- | ||
<!-- Google tag (gtag.js) --> | ||
{% if jekyll.environment == 'production' %} | ||
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.analytics.gtag }}"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', '{{ site.analytics.gtag }}'); | ||
</script> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<!-- Footer --> | ||
<footer class="py-5 bg-dark"> | ||
<div class="container"> | ||
<p class="m-0 text-center text-white"> | ||
Copyright © <a color="#FFFFFF" href="https://www.cmu.edu/me/venkatgroup/">Electrochemistry Energy Group</a> 2023 | ||
</p> | ||
</div> | ||
<!-- /.container --> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, shrink-to-fit=no" | ||
/> | ||
<meta name="description" content="{{ site.description }}" /> | ||
<meta name="author" content="" /> | ||
|
||
<title>{{ site.title }}</title> | ||
|
||
<!-- Bootstrap core CSS --> | ||
<link href="{{ site.baseurl }}/assets/css/main.css" rel="stylesheet" /> | ||
|
||
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!-- Header --> | ||
<header class="bg-primary py-5 mb-5"> | ||
<div class="container h-100"> | ||
<div class="row h-100 align-items-center"> | ||
<div class="col-lg-12"> | ||
<h1 class="display-4 text-white mt-5 mb-2"> | ||
{{ page.title }} | ||
</h1> | ||
<p class="lead mb-5 text-white-50"> | ||
{{ page.description }} | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!-- Navigation --> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | ||
<div class="container"> | ||
<a class="navbar-brand js-scroll-trigger" href="{{ site.baseurl }}/">{{ site.navtitle }}</a> | ||
<button | ||
class="navbar-toggler ml-auto" | ||
type="button" | ||
data-toggle="collapse" | ||
data-target="#navbarResponsive" | ||
aria-controls="navbarResponsive" | ||
aria-expanded="false" | ||
aria-label="Toggle navigation" | ||
> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarResponsive"> | ||
<ul class="navbar-nav ml-auto"> | ||
{% for item in site.data.menu %} | ||
<li class="nav-item{% if item.link == page.url %} active {% endif %}"> | ||
<a class="nav-link" href="{{ site.baseurl }}{{ item.link }}">{{ | ||
item.title | ||
}}</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
|
||
{% assign person = include.person %} | ||
|
||
{% comment %} | ||
|
||
Usage: {% include person-image.html person=person %} | ||
|
||
Sizing of the SVG is done in a viewBox, and it's resized later in CSS. | ||
|
||
text-decoration hack is for Safari. We don't SVGs to be underlined. | ||
|
||
{% endcomment %} | ||
|
||
{% if person.image %} | ||
{% capture image %} | ||
<img class="rounded-circle profile" | ||
alt="{{ person.display_name }}" | ||
title="{{ person.display_name }}" | ||
src="{{ site.baseurl }}/{{ person.image }}" | ||
height="100px" | ||
> | ||
{% endcapture %} | ||
{% else %} | ||
{% capture image %} | ||
<svg class="profile noprofile" | ||
alt="{{ person.display_name }}" | ||
viewBox="0 0 100 100"> | ||
<title>{{ person.display_name }}</title> | ||
<circle r="50" cx="50" cy="50" /> | ||
<text x="50" y="50" | ||
font-size="70" | ||
text-anchor="middle" dominant-baseline="central" > | ||
{{ person.display_name | slice: 0 }} | ||
</text> | ||
</svg> | ||
{% endcapture %} | ||
{% endif %} | ||
|
||
{% if person.webpage %} | ||
<a href="{{ person.webpage | escape }}" | ||
style="text-decoration: none"> | ||
{{ image }} | ||
</a> | ||
{% else %} | ||
{{ image }} | ||
{% endif %} |
Oops, something went wrong.