mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
076d9121f1
Former-commit-id: 3e00bdfbf1f3998a1744c390c12fd70430ac0320
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}}
|