marko/test/autotests/render/include-layout/layout-default.marko
2016-11-30 20:46:31 -07:00

13 lines
235 B
Plaintext

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