Official website for the Carter Lab at UC San Diego - Computational Cancer Genomics
This website showcases the research, people, software, and publications from the Carter Lab in the School of Medicine at UC San Diego.
cartercompbio.github.io/
├── index.html # Main homepage
├── styles.css # Global styles
├── navigation.js # Smooth scroll navigation
├── news.js # News section loader
├── people.js # People section loader
├── assets/
│ └── images/
│ ├── homepage.webp # Header image
│ ├── research_*.png # Research area images
│ ├── people/ # Member photos
│ │ ├── *.jpg/png # Photos
│ │ └── radar/ # Skill radar charts
│ └── software/ # Software logos
├── latest_news/
│ ├── news_data.json # All news items
│ ├── archive.html # News archive page
│ └── detail/
│ └── index.html # Dynamic news detail template
├── publications/
│ └── publications.json # All publications with citations
├── people/
│ ├── index.json # List of current/alumni IDs
│ ├── profiles/
│ │ ├── _TEMPLATE.json # Template for new members
│ │ └── *.json # Individual profile files
│ └── detail/
│ └── index.html # Dynamic people detail template
├── HOW_TO_ADD_NEWS.md # Adding news guide
└── HOW_TO_ADD_PEOPLE.md # Managing profiles guide
See HOW_TO_ADD_NEWS.md for complete instructions.
Quick: Add entry to latest_news/news_data.json
See HOW_TO_ADD_PEOPLE.md for complete instructions.
Quick: Create people/profiles/name.json, add photo, update people/index.json
See HOW_TO_ADD_PUBLICATIONS.md for complete instructions.
Quick: Add entry to publications/publications.json with citation text
- Home - Welcome message and lab overview
- News - Latest 6 news items + archive link
- Research - Four main research areas with images
- People - PI, current members, and alumni with detail pages
- Software - Lab software tools with links
- Publications - Selected publications by year
- Contact - Location and contact information
- HOW_TO_ADD_NEWS.md - Adding news items
- HOW_TO_ADD_PEOPLE.md - Managing lab member profiles
- HOW_TO_ADD_PUBLICATIONS.md - Adding publications
The site uses a teal color scheme. To change:
- Main color:
#1e748a(search and replace instyles.css) - Hover color:
#26a3ba
- Edit
index.htmlfor structure - Edit
styles.cssfor styling - All sections use semantic HTML
- All images in
assets/images/subdirectories - People: Individual profiles in
people/profiles/, index inpeople/index.json - News: All items in
latest_news/news_data.json - Publications: All citations in
publications/publications.json .nojekyllensures GitHub Pages doesn't use Jekyll processing
This website was converted from Notion and built with assistance from Claude Code.