1) Jinja Tag & Templates
<link
rel="stylesheet" type="text/css"
href="{{ url_for('static', path='/todo/css/base.css')}}">
</link>
context: {
"todos": todo_list
}
{% for todo in todos %}
Do something with todo
{% endfor %}
{% if todos %}
Display: {{ todos\length }} Todos
{% else %}
You don't have any todos!
{% endif %}