A plain HTML/CSS/JavaScript static site for Cúram Education content, including training courses, learning paths, and certification information.
This site requires no build step. To publish it:
- Go to Settings → Pages in this repository
- Under Source, select Branch:
main, folder/ (root) - Click Save
The site will be live at https://<your-org>.github.io/<repo-name>/ within a minute or two. Every push to main redeploys automatically.
index.html ← Home / Education landing page
pages/ ← Individual content pages
css/styles.css ← Single stylesheet (Merative/Cúram brand palette)
js/main.js ← Minimal vanilla JS (mobile nav, smooth scroll)
pdf/education/ ← Downloadable PDF course materials
assets/ ← Video and other static assets
.nojekyll ← Tells GitHub Pages to skip Jekyll processing
Open index.html directly in a browser, or serve with any static server:
npx serve .
# or
python3 -m http.server 8080