I have not seen the solution to this in: https://handlebarsjs.com/ or https://github.com/jknack/handlebars.java
- To override a template I need to:
{{#block "newFile" override="oldFile.hbs"}}
- I also know that I can override elements while not losing the rest of the material by:
{{#element "oldElement" noWith=true}}
- But how do I override the entire page? I want to save time by extending a ViewModel based on another ViewModel, rather than creating a new ViewModel directly based on the original Model, but I want a similar ViewModel with a different View.