| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
The website for the MIST Lab at Polytechnique Montréal. Built with Eleventy (a static site generator) and deployed to GitHub Pages. Almost everything you'll want to change lives in plain YAML data files or Markdown member pages — no web development needed.
MIST has no fixed meaning — the homepage cycles through possibilities on purpose. Edit the word lists in _data/acronym.yaml.
| I want to… | Edit this |
|---|---|
| Add / edit a lab member | A file in src/people/ — see below |
| Move someone to alumni | _data/alumni.yaml (and optionally delete their src/people/*.md) |
| Change the rotating MIST words | _data/acronym.yaml |
| Add a news item | _data/news.yaml |
| Edit research areas | _data/projects.yaml |
| Edit courses | _data/courses.yaml |
| Edit the missions gallery | _data/missions.yaml |
| Edit spin-off companies | _data/spinoffs.yaml |
| Change email / address / stats | _data/site.yaml |
Each member is one Markdown file in src/people/. The filename becomes the URL (monica-li.md → /people/monica-li/).
The _TEMPLATE.md file never appears on the site (it's excluded in .eleventyignore).
The Publications page is generated automatically from ORCID. You don't edit it by hand.
ORCID profiles are only as complete as each person keeps them. If a PI's publication list looks short, they should add their works on orcid.org. Google Scholar links on the page cover the rest.
You need Node.js 18+.
npm install # once
npm start # serves http://localhost:8080 with live reload
npm run build # one-off build into _site/No Node installed? You can build in Docker instead:
docker run --rm -v "$PWD":/app -w /app node:20-alpine \
sh -c "npm install && npx @11ty/eleventy --serve --port 8080"GitHub Pages serves project repos under a subpath (username.github.io/REPO/), so links must be prefixed. This is controlled by the PATH_PREFIX env var in deploy.yml:
| Where the site lives | Set PATH_PREFIX to |
|---|---|
| Custom domain mistlab.ca | "/" |
| Org page mistlab.github.io | "/" |
| Project page mistlab.github.io/website/ | "/website/" |
All internal links use Eleventy's url filter, so this single value is the only thing to change.
Add a file named CNAME at the repo root containing mistlab.ca, set PATH_PREFIX to "/", and configure the domain under Settings → Pages.
_data/ YAML/JSON content (site, people groups, news, acronym, …) src/ Pages (.njk) and per-person Markdown in src/people/ _includes/ Shared layouts and partials (nav, footer, person page) assets/ CSS, JS, images (people/, missions/) scripts/ ORCID publication fetcher .github/workflows Deploy + weekly publications refresh
| Back | FazBrowse Home | New Git URL |