marko/test/autotests/render/include-layout/layout-default.marko
2017-01-26 17:18:12 -07:00

13 lines
241 B
Plaintext

<h1 if(input.showHeader !== false)>
<if(input.header)>
<include(input.header)/>
</if>
<else>
DEFAULT TITLE
</else>
</h1>
<div>
<include(input.body)/>
</div>
<include(input.footer)/>
<include(input.empty)/>