Skip to content

Latest commit

 

History

History
43 lines (37 loc) · 1.5 KB

README.md

File metadata and controls

43 lines (37 loc) · 1.5 KB

Cava lab website

This is the code for the https://cavalab.org website.

How to add yourself

  1. Fork this repo.
  2. Add a square profile picture less than 200 KB to assets/images/ named something like last-name-first-name.png.
  3. edit _data/authors.yml to add an entry for yourself. For the links, you just have to change the url field. You can also remove any you don't want. for example:
myname:
  name: "My Name, MD PhD"
  avatar: "assets/images/last-name-first-name.png"
  bio: "Postdoctoral Fellow"
  links:
    - label: "Email"
      icon: "fas fa-fw fa-envelope"
      url: "mailto:[email protected]"
    - label: Website
      icon: &personal "fas fa-user"
      url: "http://personal-website.com"
    - label: Google Scholar
      icon: &scholar "fas fa-graduation-cap"
      url: "https://scholar.google.com/citations?user=me&hl=en"
    - label: Github
      icon: &github "fab fa-fw fa-github"
      url: "https://github.com/me"
    - label: Twitter
      icon: &twitter "fab fa-twitter"
      url: "https://www.twitter.com/me"
    - label: LinkedIn
      icon: &linkedin "fab fa-linkedin" 
      url: "https://www.linkedin.com/in/me/"
  about: |
    My Name is a Postdoctoral Fellow interested in improving the world.
    They receieved their MD from such and such school yada yada yada. 
  1. Commit your changes, push to your fork, and open a PR on this repo.