Rocket/examples/handlebars_templates/templates/about.hbs

14 lines
190 B
Handlebars
Raw Normal View History

2018-03-24 15:43:06 +00:00
{{#*inline "page"}}
<section id="about">
2018-07-02 21:11:09 +00:00
<h1>Here's another page!</h1>
<ul>
{{#each items}}
<li>{{ this }}</li>
{{/each}}
</ul>
2018-03-24 15:43:06 +00:00
</section>
{{/inline}}
{{~> (parent)~}}