I have a base.html template with sitewide tags for charset, google site check, style sheet, js .... I also need to configure blocks for special title tags and meta descriptions.
I am wondering if I should create {% block head%} in my base.html and in my inherited template template tags in this block, or do I need to configure certain blocks such as {% block meta%} and {% block title% } so that tags appear in appropriate places when Django displays html.
It makes sense? If I look at the source code with all the tags mixed in one {% block head%}, everything is a little out of order, but if I add certain blocks for each tag, they are fine, but use a lot more code ...?
source
share