Rocket/examples/handlebars_templates/templates/layout.hbs

12 lines
145 B
Handlebars
Raw Normal View History

2018-03-24 15:43:06 +00:00
<!doctype html>
<html>
<head>
<title>{{title}}</title>
</head>
<body>
{{> nav}}
{{~> page}}
{{> footer}}
</body>
</html>