From fc4d3a70f8528e3eabe715c234ce14b6fd43b290 Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Mon, 11 Aug 2014 23:45:10 +0200 Subject: [PATCH] Add information about extending templates --- README.rst | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 1321984..6cd51e9 100644 --- a/README.rst +++ b/README.rst @@ -100,7 +100,17 @@ suited for your deployment. url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')), -* To start your blog, you need to create a new page from the CMS and hook it to the blog application. Then, go to Advanced setting and select Blog from the Application selector. +* To start your blog, you need to create a new page from the CMS and hook it to the blog application. +Then, go to Advanced setting and select Blog from the Application selector. + +Templates ++++++++++ + +To ease the template customisations a ``djangocms_blog/base.html`` template is used by all the blog templates; +the templates itself extends a ``base.html`` template; content is pulled in the ``content`` block. +If you need to define a different base template, or if your base template does not defines a ``content`` block, +copy in your template directory ``djangocms_blog/base.html`` and customise it according to your +needs; the other application templates will use the newly created template and will ignore the bundled one. Features --------