I have created a volt inheritance, but doesn't work
/views/index.volt
<!DOCTYPE html>
<html>
<head>
{% block head %}
{% endblock %}
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>
/views/index/index.volt
{% extends "index.volt" %}
{% block head %}
<title>Page Title</title>
{% endblock %}
{% block content %}
<h1>Page Child</h1>
text
{% endblock %}
This displays
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
What is wrong?