mirror of
https://github.com/kataras/iris.git
synced 2026-01-09 13:05:56 +00:00
Add View Engine Benchmarks: https://github.com/kataras/iris/tree/master/_benchmarks/view
This commit is contained in:
5
_examples/view/layout/jet/views/index.jet
Normal file
5
_examples/view/layout/jet/views/index.jet
Normal file
@@ -0,0 +1,5 @@
|
||||
{{ extends "../layouts/main.jet" }}
|
||||
{{ block documentBody() }}
|
||||
<h1>Index Body</h1>
|
||||
<h3>Message: {{.Message}}</h3>
|
||||
{{ end }}
|
||||
9
_examples/view/layout/jet/views/layouts/main.jet
Normal file
9
_examples/view/layout/jet/views/layouts/main.jet
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>{{.Title}}</title>
|
||||
</head>
|
||||
<body>
|
||||
{{ yield documentBody() }}
|
||||
<footer>{{ include "../partials/footer.jet" . }}</footer>
|
||||
</body>
|
||||
</html>
|
||||
2
_examples/view/layout/jet/views/partials/footer.jet
Normal file
2
_examples/view/layout/jet/views/partials/footer.jet
Normal file
@@ -0,0 +1,2 @@
|
||||
<h3>Footer Partial</h3>
|
||||
<h4>{{.FooterText}}</h4>
|
||||
Reference in New Issue
Block a user