mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-11 03:59:05 +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.
20 lines
397 B
Handlebars
20 lines
397 B
Handlebars
{{#*inline "page"}}
|
|
|
|
<section id="hello">
|
|
<h1>Hi {{ name }}!</h1>
|
|
<h3>Here are your items:</h3>
|
|
<ul>
|
|
{{#each items}}
|
|
<li>{{ this }}</li>
|
|
{{/each}}
|
|
</ul>
|
|
</section>
|
|
|
|
<section id="custom-helper">
|
|
<p>Try going to <a href="/hbs/hello/Your%20Name">/hbs/hello/Your Name</a>.</p>
|
|
<p>Also, check {{ wow "this" }} (custom helper) out!</p>
|
|
</section>
|
|
|
|
{{/inline}}
|
|
{{~> (parent)~}}
|