Rocket/examples/templating/templates/hbs/layout.html.hbs

12 lines
172 B
Handlebars

<!doctype html>
<html>
<head>
<title>Rocket Example - {{ title }}</title>
</head>
<body>
{{> hbs/nav}}
{{~> page}}
{{> hbs/footer}}
</body>
</html>