diff --git a/docs/intro/overview.txt b/docs/intro/overview.txt index f04c6706fc0..f80eca4b3bb 100644 --- a/docs/intro/overview.txt +++ b/docs/intro/overview.txt @@ -271,17 +271,18 @@ Finally, Django uses the concept of "template inheritance": That's what the following blocks." In short, that lets you dramatically cut down on redundancy in templates: each template has to define only what's unique to that template. -Here's what the "base.html" template, including the use of :doc:`static files +Here's what the "base.html" template, including the use of :doc:`static files `, might look like: .. code-block:: html+django + {% load static %} {% block title %}{% endblock %} - Logo + Logo {% block content %}{% endblock %}