This folder is a standalone static site. Team members and publications are rendered from JSON in assets/data/.
- Edit
assets/data/publications.jsonand add images underassets/images/publications/.
{
"id": "2025-LastName-paper-title-2-3-words",
"title": "Title",
"projectName": "Project Abbreviation",
"authors": [
"Firstname Lastname",
"Firstname Lastname", # important to use this format for lab members to link to their profile
],
"jointFirstAuthors": [
"Firstname Lastname" # optional; members listed here are prioritized like first authors on profile pages
],
"year": YYYY,
"date": "YYYY-MM-DD",
"venue": "venue",
"type": "paper",
"cover": "assets/images/publications/file_name",
"doi": "", # this or paper link is mandatory
"links": {
"website": "/projects/Abbreviation/",
"paper": "https://paper-url", # link to paper pdf
"code": "https://github.com/PLAN-Lab/project-name",
"video": "",
"data": "",
},
"cardCover": "assets/images/cards/filename" # only for papers on home page
"venueAbbr": "" # venue Abbreviation such as CVPR, NeurIPS, or arXiv, etc.
}
- Make sure to remove the comments from above block after the edits, comments are not supported in json.
- Add publication cover image under
assets/images/publications/(ideally use a 4:3 aspect ratio) - For papers on home page, add card cover image under
assets/images/cards/ - Send a pull request
- Edit
assets/data/team.json
{
"id": "firstname-lastname", # permanent URL slug; never include member status
"group": "pi/phd/masters/undergrad/alumni",
"name": "Firstname Lastename", # don't add aliases here, add them in the aliases field
"displayName": "Firstname (Alias) Lastname", # optional custom display formatting
"aliases": [
"alias1"
]
"role": "PhD Student", # PhD Student/Masters Student/Undergraduate/Alumni
"title": [
"PhD Student" # PhD Student/Masters Student/Undergraduate/Former Masters Student/Former PhD Student/Former Undergraduate
],
"currently": "", # current position, if alumni
"avatar": "assets/images/team/firstname-lastname.jpg",
"email": "id@illinois.edu",
"github": "https://github.com/username",
"website": "https://website-url",
"linkedin": "https://www.linkedin.com/in/username/",
"googleScholar": "https://scholar.google.com/citations?user=xxxx",
"twitter": "https://twitter.com/username",
"bio": "" # Take a look at other bios with same role/title for reference,
},
- Add profile picture under
assets/images/team/asfirstname-lastname.jpg - Link project-page authors with
/team/firstname-lastname;assets/js/project-pages.jsresolves it to the member profile. - To change a member's status, update
group,role,title, andcurrentlyas needed. Do not changeidor project links. - Send a pull request
To create a new project page:
- Copy
simple-site/projects/template/tosimple-site/projects/<slug>/ - Edit
simple-site/projects/<slug>/index.html
Use WebP for all images (cwebp or Pillow). Card covers up to 1600px wide,
publication thumbnails up to 960px, team avatars up to 640px. Animated GIFs
should be converted to animated WebP. Anything over ~300 KB on a card or
thumbnail is too big.
Short links redirect through 404.html. A slug map at the top of that file
redirects known projects before the page paints. When adding a project,
add its folder name to the SLUGS map in 404.html (or leave it: unknown
slugs are probed automatically with a short delay before redirecting).