Personal website for Ivan Ball-llovera, Senior Software Architect. A fast, accessible, static site (plain HTML, CSS, and vanilla JS, no build step) that brings together the resume, the open-source MMCA platform, the writing series, and speaking/community work.
There is no build step. Open index.html directly in a browser, or serve the folder with any
static server, for example:
# Python
python -m http.server 8080
# or .NET
dotnet tool install -g dotnet-serve && dotnet serve -d .Then browse to the printed URL.
index.html Home / About
resume.html Experience, skills, certifications, education (+ PDF download)
platform.html The MMCA platform showcase
writing.html Article cards (summary + "Read on Medium")
speaking.html Speaking & community
contact.html Contact (email, LinkedIn, GitHub)
404.html
assets/
css/styles.css Single stylesheet (light + dark, responsive)
js/main.js Theme toggle, mobile nav, email de-obfuscation, footer year
js/writing.js Renders article cards from data
data/articles.js window.ARTICLES = [...] (the single edit point for the Writing page)
data/talks.js window.TALKS = [...]
img/ files/
sitemap.xml robots.txt .nojekyll
- Add or update an article card: edit
assets/data/articles.js. Set theurlfield once an article is live on Medium; an emptyurlrenders a "Coming soon" state. - Change the published email: edit
EMAIL_USER/EMAIL_DOMAINat the top ofassets/js/main.js. - Update the resume: replace
assets/files/Ivan-Ball-llovera-Resume-2026.pdfand editresume.html.
Pushed to the ivanball.github.io repository and served from the main branch root. A custom
domain can be added later via a CNAME file.