diff --git a/Large-app-how-to.md b/Large-app-how-to.md index 59e223b..d4656dc 100644 --- a/Large-app-how-to.md +++ b/Large-app-how-to.md @@ -233,12 +233,68 @@ The view is where we'll declare our Blueprint. Using url_prefix will prefix ever ## First template +Jinja is integrated within Flask. One of the great feature of Jinja is the inheritance and the logic available (conditional structure, loop, context modification...). We'll create a `base.html` template from which we'll inherit from on each of our template. You can even have more than 1 inheritance (like having your template inheriting from twocolumn.html template which itself inherit from main.html) + + +
+