This is the code for the https://cavalab.org website.
- Fork this repo and make a new branch.
- Add a square profile picture less than 200 KB to
assets/images/
named something likelast-name-first-name.png
. - Make a new file named
last-name-first-name.md
in the_members
folder with a header and bio following this example - edit
_data/authors.yml
to add an entry for yourself, for example:
bill:
name: "My Name, PhD"
avatar: "assets/images/last-name-first-name.png"
bio: "Postdoctoral Fellow"
links:
- label: "Email"
icon: "fas fa-fw fa-envelope"
url: "mailto:my.email@childrens.harvard.edu"
- 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/"
For the links, you just have to change the url
field.
You can also remove any you don't want.
- Commit your changes, push to your fork, and open a PR on this repo.