From ad69293958226ef4c1355628d944a2692cca820f Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 23 Feb 2013 10:00:23 -0500 Subject: [PATCH] [1.5.X] Fixed #19675 - Added mention of static files to overview. Thanks Dwight Gunning for the patch. Backport of a61dbd6219 from master --- docs/intro/overview.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/intro/overview.txt b/docs/intro/overview.txt index 4f3cd47310..f04c6706fc 100644 --- a/docs/intro/overview.txt +++ b/docs/intro/overview.txt @@ -271,7 +271,8 @@ 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 might look like: +Here's what the "base.html" template, including the use of :doc:`static files +`, might look like: .. code-block:: html+django @@ -280,7 +281,7 @@ Here's what the "base.html" template might look like: {% block title %}{% endblock %} - Logo + Logo {% block content %}{% endblock %}