The McKnight Brain Aging Registry (MBAR) is a website for researchers affiliated with the four McKnight Brain Research Foundation Institutes. Researchers who are part of those institutes can apply for access to the datasets.
- GitHub Pages: https://uab-it.github.io/mbar/
- Netlify: https://mbar.netlify.app/
A static site using htmx for client-side page loading and Tailwind CSS (CDN v2.2.19) for styling. No build step, bundler, or package manager.
index.html— Main entry point and shell (header, footer, nav, banner)pages/— Content fragments loaded dynamically via htmx into the main content area404.html— Catch-all for GitHub Pages SPA routingnetlify.toml— Rewrite rules for clean URL routing on Netlifyimages/— Static image assets (logos, photos)
Open index.html in a browser or use any static file server:
python3 -m http.server
- GitHub Pages deploys automatically from the
mainbranch - Netlify uses
netlify.tomlfor SPA rewrite rules; deploy vianetlify deploy --dir=. --prod