Is it possible to perform Includes with flask? Is it possible to perform Includes with flask? flask flask

Is it possible to perform Includes with flask?


From: http://jinja.pocoo.org/docs/templates/#include

template.html

{% include 'banner.html' %}{% include 'sidenavigation.html' %}{% include 'content.html' %}{% include 'footer.html' %}


By default, Flask uses Jinja2 as its template engine. See Jinja's Template Designer Documentation how it's done.