rustc/vendor/handlebars/examples/script/template.hbs
2020-09-04 16:38:49 +01:00

11 lines
218 B
Handlebars

Bundesliga Match Day
{{#each this as |match| ~}}
{{#each match as |team|}}
{{team.name}} - {{score team.goals}}
{{#each team.goals as |scorer|}}
> {{scorer}}
{{/each}}
{{~ /each}}
---
{{/each}}