I'm trying to use Brochure and using Slim to render the templates. Everything's fine except I can't seem to get the layouts to work, a yield
in the template throws a LocalJumpError. Any ideas how on how to proceed?
----/templates/index.html.slim-----
==render "shared/layout"
----/shared/_layout.html.slim-----
#pg
==yield #--->fails with a LocalJumpError here
I've tried this both with Slim and ERB and I get the same error.