simple-template
simple-template copied to clipboard
Support some form of inheritance/mixin block?
frame.html:
<div class="wrap">
{{ block }}
</div>
toplevel.html:
{{ mixin frame }}
<h1>Hello</h1>
{{ end }}
produces:
<div class="wrap">
<h1>Hello</h1>
</div>