flask-material-dashboard
flask-material-dashboard copied to clipboard
HTML title is not being set correctly.
In the current code and example the title of the browser tab says:
I believe this is a bug
Why this happens in Flask 3.0:
In Flask 3.0, Jinja2 has stricter rules about block inheritance across included templates. When you use {% include %}, it processes that template immediately, but blocks defined in child templates that extend the base template aren't available during the include processing. By placing the title block directly in the base template, the inheritance chain remains intact.