Concept Flow - Passing data to templates
Client sends request
Express route handler runs
Prepare data object
Call res.render(template, data)
Template engine merges data into template
Send rendered HTML to client
This flow shows how Express receives a request, prepares data, renders a template with that data, and sends the final HTML back to the client.