gitextract_np42nmfs/ ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── _config.yml ├── _data/ │ ├── cv/ │ │ ├── academic-experience.yml │ │ └── education.yml │ ├── publications.yml │ └── settings.yml ├── _includes/ │ ├── contact.html │ ├── footer.html │ ├── head.html │ ├── header.html │ └── publications.html ├── _layouts/ │ ├── contact.html │ ├── courses.html │ ├── cv.html │ ├── default.html │ ├── home.html │ ├── page.html │ ├── people.html │ ├── post.html │ └── publications.html ├── _posts/ │ ├── 2020-01-01-sample-post.md │ ├── 2020-02-01-class-update.md │ └── 2020-03-01-new-paper-published.md ├── _sass/ │ └── main.scss ├── academic.gemspec ├── assets/ │ └── css/ │ └── main.scss ├── contact.md ├── courses/ │ ├── quantum-mechanics.md │ ├── stellar-structures.md │ └── vector-calculus.md ├── courses.md ├── cv.md ├── index.md ├── people/ │ ├── graduate-student.md │ ├── lab-technician.md │ └── primary-investigator.md ├── people.md └── publications.md