Open ainsleyclark opened 1 year ago
In base.html the <include> file never gets rendered.
base.html
<include>
<body> <!-- Doesn't work --> <include src="partials/header.html"></include> <main> <block name="content"></block> </main> </body>
However it does get rendered within a layout:
<extends src="base.html"> <block name="content"> <!-- Works --> <include src="partials/header.html"></include> </block> </extends>
Any idea what could be causing this issue?
In
base.html
the<include>
file never gets rendered.However it does get rendered within a layout:
Any idea what could be causing this issue?