Important Commands
create new temp>base.html
<html lange="en">
<head>
<meta Charset ="UTF-8">
<title> Title </title>
</head>
<body>
{% block content %} {% endblock %}# this is the name of block
</body>
</html>
now open prevoiuse html tmeplete called home
and remove every thing from home.html
{% extendeds "base.html"} # it will replace the base.html
{% block body%}
<h1/> this is latest news on home page </h1>
<p/> this our latest news description </p>
{% endblock %}
this is main problem of title
open base.html and changhe the title
<html lange="en">
<head>
<meta Charset ="UTF-8">
<title> {% block title%} {%endblock%} </title>
</head>
<body>
{% block content %} {% endblock %}# this is the name of block
</body>
</html>
now open home.html
{%block title %} home {% endblock%}