Flask Tutorial - HTML Templates with Jinja - techwithtim.net

PHOTO EMBED

Thu Dec 09 2021 18:08:00 GMT+0000 (Coordinated Universal Time)

Saved by @huskygeek

<!doctype html>
<html>
<head>
    <title>Home page</title>
    </head>
    <body>
	{% for x in range(10) %}
             <p>{{x}}</p>
        {% endfor %}
    </body>
</html>
content_copyCOPY

https://www.techwithtim.net/tutorials/flask/html-templates/