<!-- before posting an issue, try chatting on https://gitter.im/pattern-lab/node --> <!-- before posting an issue, verify you are running at least Node 4 or 5 --> I am using Pattern Lab Node `2.5.0` on `Mac`, with Node `v6`, using the `Gulp` Edition. ## Expected Behavior for a given pattern : ``` mustache {{> atom-btn }} ``` in a template `template-x` we call the btn : ``` mustache {{> atom-btn }} ``` then call the template in `page-y` ``` mustache {{> template-x }} ``` the page should display the btn ## Actual Behavior display a blank page (no error, nothing at screen appart for the patternlab UI ) ##### Steps to Reproduce create : atoms/btn ``` mustache <a class="a-btn">text</a> ``` templates/x ``` mustache {{> atoms-btn }} ``` pages/y ``` mustache {{> templates-x }} ```