mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-10 19:49:06 +00:00
1c600bda30
This includes one breaking change: the default Content-Type of templates without an identifying extension is now 'Text'. This is to prevent Tera templates from rendering as HTML without being escaped. Resolves #1637.
12 lines
172 B
Handlebars
12 lines
172 B
Handlebars
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Rocket Example - {{ title }}</title>
|
|
</head>
|
|
<body>
|
|
{{> hbs/nav}}
|
|
{{~> page}}
|
|
{{> hbs/footer}}
|
|
</body>
|
|
</html>
|