Skip to content

Support block helpers

Compare
Choose a tag to compare
@jwilm jwilm released this 27 Dec 06:34
· 89 commits to master since this release

block

Specify a block in your layout:

{{#block "sidebar"}}
  <!-- default sidebar content -->
{{/block}}

contentFor

Fill the block with contentFor helper

{{#contentFor "sidebar"}}
<aside>
  <p>{{sidebarContent}}</p>
</aside>
{{/contentFor}}