mirror of
https://github.com/jetzig-framework/jetzig.git
synced 2025-05-14 22:16:08 +00:00

Latest Zmpl provides `template.renderWithLayout(other_template, data)`, allowing a template to be renedered within another template. Create layouts in `src/app/views/layouts/` or use `jetzig generate layout [name]` and set `pub const layout = "name";` in each view file.
9 lines
86 B
Plaintext
9 lines
86 B
Plaintext
<html>
|
|
<head>
|
|
</head>
|
|
|
|
<body>
|
|
<main>{zmpl.content}</main>
|
|
</body>
|
|
</html>
|