I want to create a master.html file for inheritance, but I'm facing an issue where the code is repetitive in three different places except for the body class.
Here's my current master.html:
<html>
<head>...</head>
<body>
{% block one %}{% endblock %}
{% block two %}{% endblock %}
{% block extra %}{% endblock %}
</body>
</html>
However, in certain instances, I have: <_body class="front"> <_body class="not_front"> The remaining content such as .js files and images remains the same.
How can I efficiently handle this without having three separate 'master' files?