I am trying for template inheritance from base.html to other templates using handlebars.But am not getting soul for this.
Please, Can anyone help me out with simple DEMO. with base.html , extend.html
For example , Base.html
<html><head></head>
<body>
{% block content %}{% endblock %}
</body>
</html>
Extend.html
{% extends "base.html" %}
{% block content %}<h1>Foobar!</h1>{% endblock %}
Which files I need to include in base.html ......?