This folder contains Markdown files for the individual members populating the Team page.
To create your own, we recommend copying an existing member profile as close to the structure you want (e.g., a simple paragraph or multiple, extensive sections) and renaming it as your lastname-firstname.md
.
Each file must contain a YAML front matter block at the top, sandwiched between triple-dashed lines (---
), for Jekyll to process.
Below is a generic example, followed by a key legend subsection:
---
title: "Lastname, Firstname"
excerpt: "[position]"
header:
teaser: /assets/images/team/lastname-firstname.jpg
sidebar:
- title: "Position"
image: /assets/images/team/lastname-firstname.jpg
text: "[position]<br>
<a href='mailto:user@domain.org'>
<i class='fas fa-fw fa-envelope'></i>Email</a><br>
<a href='https://github.com/username' target='_blank'
<i class='fab fa-fw fa-github'></i>GitHub</a><br>
<a href='https://scholar.google.com/citations?user=ID' target='_blank'>
<i class='fas fa-fw fa-user-graduate'></i>Google Scholar</a><br>
<a href='/tags/#lastname-firstname'>
<i class='fas fa-fw fa-newspaper'></i>News</a><br>
<a href='https://orcid.org/0000-0000-0000-0000' target='_blank'>
<i class='fab fa-fw fa-orcid'></i>ORCiD</a>"
- title: "Research Interests"
text: "<ul>
<li> Topic 1
<li> Topic 2"
---
title:
Your name—last name first, immediately followed by a comma (,
), and wrapped in double quotes ("
)—to be displayed in the team directory and on the top header of your profile page, e.g.,"Hubble, Edwin P."
; you can include a middle initial.excerpt:
Your position (wrapped in double quotes) as one of the following fixed values:"Principal Investigator"
"Postdoctoral Scholar"
"Graduate Assistant"
"Alum"
header:
teaser:
The path to your profile image (.jpg
or.png
) in/assets/images/team/
to appear on the main directory; please crop your photo to have square dimensions (i.e., 1:1 aspect ratio) and match its filename to that of your Markdown file (e.g.,lastname-firstname.jpg
).
sidebar:
title: "Position"
Leave as is.image:
The same path to your profile image to appear on your profile sidebar; seeheader:
,teaser:
above for the standard path and image format.text:
Your position (seeexcerpt:
above for valid fixed values), followed by any optional personal links; use the sample HTML link and icon tags in the example above, making sure to wrap your hypertext reference (href=
) in single quotes ('
); you must include a"
(double quote) after the final item; see example above. See also this table for a sample list of Font Awesome (FA) icons to use in<i class='fas fa-fw ...'></i>
.
title: "Research Interests"
(Optional) To be included on your profile sidebar.text: "<ul>
(HTML for unnumbered list) (Optional) List each item on a separate line prepended with<li>
(HTML for list item, ensuring a single empty space before your text); best to keep to a maximum of 2-3 words and must include a double quote ("
) after the final item; see example above.
Jekyll will render your post from any Markdown you supply below the front matter section. Specifically, our site supports GitHub Flavored Markdown (GFM) input, which includes some extensions beyond the standard Markdown specification, notably fenced code blocks.
- For a GFM reference and more information on Markdown formatting and features, see Writing on GitHub.
- For additional post ideas and examples, see this extensive list of rendered Sample Posts and their corresponding raw Markdown files.
- See also GitHub Learning Lab's, 10 step, 45 min course on Communicating using Markdown.