mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
17 lines
373 B
Plaintext
17 lines
373 B
Plaintext
|
{{extends "layouts/application.jet"}}
|
||
|
{{import "includes/blocks.jet"}}
|
||
|
|
||
|
{{block documentBody()}}
|
||
|
<h1>Embedded example</h1>
|
||
|
|
||
|
<nav>
|
||
|
{{yield menu()}}
|
||
|
</nav>
|
||
|
|
||
|
{{include "includes/_partial.jet"}}
|
||
|
|
||
|
{{if !includeIfExists("doesNotExist.jet")}}
|
||
|
<p>Shows how !includeIfExists works: doesNotExist.jet was not included because it doesn't exist.</p>
|
||
|
{{end}}
|
||
|
{{end}}
|