<!DOCTYPE html>
<html>
<head><title>{{ title }}</title></head>
<body>
<h1>Welcome to {{ title }}</h1>
<p>This page is rendered with Jinja2.</p>
</body>
</html>
✏️ Exercise: Create a "templates" folder with an index.html. Render it from FastAPI passing a list of items. Display them in a loop using Jinja2 syntax.