Files
Basalt2/node_modules/shiki/samples/handlebars.sample
Robert Jelic 5c15cf28fa Test
2025-02-10 07:12:35 +01:00

18 lines
381 B
Plaintext

<div class="entry">
<h1>{{title}}</h1>
{{#with story}}
<div class="intro">{{{intro}}}</div>
<div class="body">{{{body}}}</div>
{{/with}}
</div>
<div class="comments">
{{#each comments}}
<div class="comment">
<h2>{{subject}}</h2>
{{{body}}}
</div>
{{/each}}
</div>
{{! From https://handlebarsjs.com/guide/block-helpers.html#the-with-helper }}