diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml new file mode 100644 index 0000000..c2264a3 --- /dev/null +++ b/.github/workflows/jekyll-gh-pages.yml @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2ca8682 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +_site/ +.sass-cache/ +.jekyll-cache/ +.jekyll-metadata diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..be94e6f --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +3.2.2 diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..8949b6a --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +business-frontpage.webjeda.com \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..aea06e6 --- /dev/null +++ b/Gemfile @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +source "https://rubygems.org" + +# gem "rails" + +gem "jekyll", "~> 4.3" diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..4f42a9c --- /dev/null +++ b/Gemfile.lock @@ -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 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9478164 --- /dev/null +++ b/LICENSE @@ -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. diff --git a/README.md b/README.md new file mode 100644 index 0000000..662182a --- /dev/null +++ b/README.md @@ -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! diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..d56ef71 --- /dev/null +++ b/_config.yml @@ -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 diff --git a/_data/menu.yml b/_data/menu.yml new file mode 100644 index 0000000..cab1bd5 --- /dev/null +++ b/_data/menu.yml @@ -0,0 +1,5 @@ +- title: Home + link: / + +- title: About Us + link: /about/ diff --git a/_data/people.yml b/_data/people.yml new file mode 100644 index 0000000..26c837f --- /dev/null +++ b/_data/people.yml @@ -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 diff --git a/_includes/analytics.html b/_includes/analytics.html new file mode 100644 index 0000000..933a80e --- /dev/null +++ b/_includes/analytics.html @@ -0,0 +1,13 @@ +--- +--- + +{% if jekyll.environment == 'production' %} + + +{% endif %} diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..83d9744 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,9 @@ + + diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..393008d --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,15 @@ +
+ + + + + ++ {{ page.description }} +
+{{ project.card-content }}
+