This repository hosts the static GitHub Pages website for EngineeringAI Lab. The site does not require a build step; GitHub Pages can publish it directly from the repository root.
index.html: About page with Who We Are, We Work On, Highlights, News, and Latest Poststeam.html: leaders, current members, and alumniprojects.html: research directions and representative systemspublications.html: selected team papers and manuscriptsadvisors.html: collaborating advisors and partnersnews.html: lab updatesstyles.css: shared styling for all pages
For an organization homepage, name the repository:
EngineeringAI-LAB.github.io
The default published URL will be:
https://engineeringai-lab.github.io/
If you use a regular project repository name, such as EngineeringAI-LAB, the
published URL will include the repository path:
https://engineeringai-lab.github.io/EngineeringAI-LAB/
- Create a repository named
EngineeringAI-LAB.github.iounder theEngineeringAI-LABorganization. - Initialize this directory as a git repository and push it to that remote.
- Open
Settings -> Pages, chooseDeploy from a branch, select themainbranch, and choose/root. - Wait for GitHub Pages to finish deployment.
Useful commands:
git init -b main
git add .
git commit -m "Initial GitHub Pages site"
git remote add origin git@github.com:EngineeringAI-LAB/EngineeringAI-LAB.github.io.git
git push -u origin mainIf you prefer an HTTPS remote:
git remote add origin https://github.com/EngineeringAI-LAB/EngineeringAI-LAB.github.io.git
git push -u origin main