Rocket/examples/handlebars_templates/templates/layout.hbs

12 lines
164 B
Handlebars
Raw Normal View History

2018-03-24 15:43:06 +00:00
<!doctype html>
<html>
<head>
2018-07-02 21:11:09 +00:00
<title>Rocket Example - {{ title }}</title>
2018-03-24 15:43:06 +00:00
</head>
<body>
{{> nav}}
{{~> page}}
{{> footer}}
</body>
</html>