Rocket/examples/templating/templates/hbs/about.hbs

14 lines
198 B
Handlebars
Raw Normal View History

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