Tornado template mode <!doctype html> <html> <head> <title>My Tornado web application</title> </head> <body> <h1> {{ title }} </h1> <ul class="my-list"> {% for item in items %} <li>{% item.name %}</li> {% empty %} <li>You have no items in your list.</li> {% end %} </ul> </body> </html> x 1 <!doctype html>2 <html>34 <head>5 <title>My Tornado web application</title>6 </head>78 <body>9 <h1> {{ title }} </h1>10 <ul class="my-list"> {% for item in items %}11 <li>{% item.name %}</li> {% empty %}12 <li>You have no items in your list.</li> {% end %} </ul>13 </body>1415 </html>16 Mode for HTML with embedded Tornado template markup. MIME types defined: text/x-tornado