Concept Flow - Render_template function
Start Flask app
Receive HTTP request
Call route function
Inside function: call render_template
Flask loads HTML template file
Insert variables into template placeholders
Return rendered HTML to browser
Browser displays final HTML
This flow shows how Flask uses render_template to load an HTML file, fill in variables, and send the final page to the browser.