Skip to content

Commit e6d72e9

Browse files
committed
Replace the website content with the new website
1 parent 0c4660b commit e6d72e9

596 files changed

Lines changed: 49011 additions & 21462 deletions

File tree

Some content is hidden

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

.github/workflows/jekyll.yml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
6+
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
7+
name: Deploy Jekyll site to Pages
8+
9+
on:
10+
# Runs on pushes targeting the default branch
11+
push:
12+
branches: ["main"]
13+
14+
pull_request:
15+
branches: ["main"]
16+
17+
# Allows you to run this workflow manually from the Actions tab
18+
workflow_dispatch:
19+
20+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
21+
permissions:
22+
contents: read
23+
pages: write
24+
id-token: write
25+
26+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
27+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
28+
concurrency:
29+
group: "pages"
30+
cancel-in-progress: false
31+
32+
jobs:
33+
# Build job
34+
build:
35+
runs-on: ubuntu-latest
36+
steps:
37+
- name: Checkout
38+
uses: actions/checkout@v4
39+
- name: Setup Ruby
40+
# https://github.com/ruby/setup-ruby/releases/tag/v1.207.0
41+
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
42+
with:
43+
ruby-version: '3.1' # Not needed with a .ruby-version file
44+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
45+
cache-version: 0 # Increment this number if you need to re-download cached gems
46+
- name: Setup Pages
47+
id: pages
48+
uses: actions/configure-pages@v5
49+
- name: Build with Jekyll
50+
# Outputs to the './_site' directory by default
51+
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
52+
env:
53+
JEKYLL_ENV: production
54+
- name: Upload artifact
55+
# Automatically uploads an artifact from the './_site' directory by default
56+
uses: actions/upload-pages-artifact@v3
57+
58+
# Deployment job
59+
deploy:
60+
environment:
61+
name: github-pages
62+
url: ${{ steps.deployment.outputs.page_url }}
63+
runs-on: ubuntu-latest
64+
needs: build
65+
steps:
66+
- name: Deploy to GitHub Pages
67+
id: deployment
68+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
_site
2+
*Zone.Identifier
3+
*.DS_Store

404.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: page
3+
permalink: /404.html
4+
---
5+
6+
<div class="container">
7+
<div class="row">
8+
<div class="col col-12">
9+
<div class="error">
10+
<h2 class="error__title">404</h2>
11+
<p class="error__text">The requested page could not be found.</p>
12+
</div>
13+
</div>
14+
</div>
15+
</div>

Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source 'https://rubygems.org'
2+
gem "bundler"
3+
gem "jekyll"
4+
gem "jekyll-paginate"
5+
gem "jekyll-sitemap"

Gemfile.lock

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
base64 (0.3.0)
7+
colorator (1.1.0)
8+
concurrent-ruby (1.3.5)
9+
csv (3.3.5)
10+
em-websocket (0.5.3)
11+
eventmachine (>= 0.12.9)
12+
http_parser.rb (~> 0)
13+
eventmachine (1.2.7)
14+
ffi (1.17.2)
15+
forwardable-extended (2.6.0)
16+
google-protobuf (3.25.8)
17+
google-protobuf (3.25.8-arm64-darwin)
18+
google-protobuf (3.25.8-x86_64-darwin)
19+
google-protobuf (3.25.8-x86_64-linux)
20+
http_parser.rb (0.8.0)
21+
i18n (1.14.7)
22+
concurrent-ruby (~> 1.0)
23+
jekyll (4.4.1)
24+
addressable (~> 2.4)
25+
base64 (~> 0.2)
26+
colorator (~> 1.0)
27+
csv (~> 3.0)
28+
em-websocket (~> 0.5)
29+
i18n (~> 1.0)
30+
jekyll-sass-converter (>= 2.0, < 4.0)
31+
jekyll-watch (~> 2.0)
32+
json (~> 2.6)
33+
kramdown (~> 2.3, >= 2.3.1)
34+
kramdown-parser-gfm (~> 1.0)
35+
liquid (~> 4.0)
36+
mercenary (~> 0.3, >= 0.3.6)
37+
pathutil (~> 0.9)
38+
rouge (>= 3.0, < 5.0)
39+
safe_yaml (~> 1.0)
40+
terminal-table (>= 1.8, < 4.0)
41+
webrick (~> 1.7)
42+
jekyll-paginate (1.1.0)
43+
jekyll-sass-converter (3.0.0)
44+
sass-embedded (~> 1.54)
45+
jekyll-sitemap (1.4.0)
46+
jekyll (>= 3.7, < 5.0)
47+
jekyll-watch (2.2.1)
48+
listen (~> 3.0)
49+
json (2.12.2)
50+
kramdown (2.5.1)
51+
rexml (>= 3.3.9)
52+
kramdown-parser-gfm (1.1.0)
53+
kramdown (~> 2.0)
54+
liquid (4.0.4)
55+
listen (3.9.0)
56+
rb-fsevent (~> 0.10, >= 0.10.3)
57+
rb-inotify (~> 0.9, >= 0.9.10)
58+
mercenary (0.4.0)
59+
pathutil (0.16.2)
60+
forwardable-extended (~> 2.6)
61+
public_suffix (6.0.2)
62+
rake (13.3.0)
63+
rb-fsevent (0.11.2)
64+
rb-inotify (0.11.1)
65+
ffi (~> 1.0)
66+
rexml (3.4.1)
67+
rouge (4.5.2)
68+
safe_yaml (1.0.5)
69+
sass-embedded (1.69.5)
70+
google-protobuf (~> 3.23)
71+
rake (>= 13.0.0)
72+
terminal-table (3.0.2)
73+
unicode-display_width (>= 1.1.1, < 3)
74+
unicode-display_width (2.6.0)
75+
webrick (1.9.1)
76+
77+
PLATFORMS
78+
arm64-darwin
79+
ruby
80+
x86_64-darwin
81+
x86_64-linux
82+
83+
DEPENDENCIES
84+
bundler
85+
jekyll
86+
jekyll-paginate
87+
jekyll-sitemap
88+
89+
BUNDLED WITH
90+
2.5.23

README.md

100644100755
Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1-
# csb5.github.io
2-
Nagarajan Lab Webpage
1+
# MTMS Lab website
2+
3+
### Documentation
4+
5+
Refer to [this documentation](https://csb5-page.github.io/documentation/) for guidelines on contributing to the website, including how to add blog posts and people, and how to preview the website before deployment.
6+
7+
If you are a website developer, refer to [this documentation for developers](https://csb5-page.github.io/documentation_developer/) on steps to update content/styles of the pages.
8+
9+
### Blog post elements
10+
11+
Refer to [this page](https://csb5-page.github.io/elements/) for examples on how to format the text, images and videos in the blog posts.

_authors/1-niranjan-nagarajan.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
username: niranjan-nagarajan
3+
title: Niranjan Nagarajan
4+
permalink: /niranjan-nagarajan
5+
name: Niranjan Nagarajan
6+
nick_name: Niranjan
7+
position: NRF Investigator
8+
email: nagarajann@a-star.edu.sg
9+
image: 'https://pbs.twimg.com/profile_images/492209283371520000/XGi7L_94_400x400.jpeg'
10+
X: https://x.com/NiranjanTW
11+
bluesky: https://bsky.app/profile/niranjantw.bsky.social
12+
linkedin: https://www.linkedin.com/in/niranjan-nagarajan-765151ba/
13+
scholar: https://scholar.google.com/citations?user=s65iHisAAAAJ&hl=en&oi=ao
14+
---
15+
16+
<h4>
17+
Associate Professor, Yong Loo Lin School of Medicine, NUS <br> Associate Director, Genome Institute of Singapore, A*STAR </h4>
18+
19+
20+
**PhD** &nbsp;&nbsp; / &nbsp;&nbsp; Cornell University<br>
21+
**MSc** &nbsp;&nbsp; / &nbsp;&nbsp; Cornell University<br>
22+
**BA** &nbsp;&nbsp; / &nbsp;&nbsp; Ohio Wesleyan University
23+
24+
<br/>
25+
26+
I am a microbiome scientist passionate about reimagining how we live in a microbial world. Our lab has students and researchers from diverse backgrounds, celebrating each other's successes, and helping the team do the most exciting science that impacts human and environmenal health. I love reading realistic science fiction stories, playing strategy games and almost all racquet sports (except those whose names end with the word "ball").

_authors/a-alkaff-ahamed.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
username: a-alkaff-ahamed
3+
name: A Alkaff Ahamed
4+
position: Bioinformatics Specialist
5+
is_alumni: true
6+
image: '/images/members/old_website/alkaff.jpg'
7+
---

_authors/aanchal-mongia.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
username: aanchal-mongia
3+
name: Aanchal Mongia
4+
position: Intern
5+
is_intern: true
6+
image: '/images/members/old_website/aanchal.jpg'
7+
---

_authors/aarthi-ravikrishnan.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
username: aarthi-ravikrishnan
3+
name: Aarthi Ravikrishnan
4+
nick_name: Aarthi
5+
image: 'https://pbs.twimg.com/profile_images/936213114525073408/CWJOJwYf_400x400.jpg'
6+
position: Senior Scientist
7+
X: https://x.com/aarthiravikrish
8+
---

0 commit comments

Comments
 (0)