Open data.js and add to the top of the publications array:
{
title: "Your Paper Title Here",
authors: ["Co-author 1", "Mitchell Gordon", "Co-author 2"],
venue: "CHI 2025",
award: "Best Paper", // Optional - remove this line if no award
year: 2025
},Open data.js and add to the students array:
{
name: "Student Name",
type: "phd",
website: "https://studentwebsite.com", // Optional
image: "images/students/studentname.jpg" // Optional - add photo first
},- Save the photo as
images/students/studentname.jpg - Update the student's entry in
data.jswith the image path
Edit index.html - find the <section class="bio"> and update the paragraphs.
Open data.js and add to the teaching array:
{
term: "Spring 2026",
course: "6.UAT: Oral Communication",
institution: "MIT EECS",
role: "Instructor" // or "Course Assistant", "TA", etc.
},Replace assets/cv.pdf with your updated CV.
Edit index.html - find the email link in the header section.
After making changes:
git add .
git commit -m "Update [what you changed]"
git pushYour changes will appear at https://mgordon.me within a minute.
- The site uses MIT's cardinal red (#A31F34) for links and accents
- All content loads from
data.jsexcept bio and awards - No build process needed - just edit and push!
- Test locally by opening
index.htmlin a browser before pushing