fbrctr / fabricator

A tool for building website UI toolkits and style guides
http://fbrctr.github.io/
MIT License
1.11k stars 124 forks source link

Nested partials #316

Open rosshulford opened 5 years ago

rosshulford commented 5 years ago

I am trying to wrap a section partial around a couple of partials. What am I doing wrong?

{{#>section}}
  {{>title}}
  {{>summary}}
{{/section}}

In my section I have

<section class="section">
        {{> @partial-block }}
</section>

This looks like it should work?