A pattern in some templating systems is the ability to change a partial and then include the original. This could be used to inject content after the header for instance, by overriding the header partial and calling the original one inside the override:
{{ partial parent . }}
This text below original
Is something like this possible in hugo or is a partial override a “done deal” where you have to include all the code from the original?