This is my base file
{% load static %}
{% include "feed/header.html" %}
{% block content%}
{% endblock %}
{% include "feed/footer.html" %}
This is my header which includes title:
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>
{% block title %} Home {% endblock %}
</title>
So when I try to override title in my detail page then it shows the title of header always i.e. Home(not change) but not the title of detail page which I override. following is the code which I used in Detail page:
{% extends 'feed/base.html'%}
{% block title %} Details {% endblock %}
{% block content %}
some views
{% endblock %}
So help me to figure out this problem.