]> git.proxmox.com Git - rustc.git/blob - src/vendor/handlebars/examples/decorator/template.hbs
New upstream version 1.17.0+dfsg1
[rustc.git] / src / vendor / handlebars / examples / decorator / template.hbs
1 {{*format_suffix "分"}}
2 <html>
3 <head>
4 <title>中超联赛 {{year}}</title>
5 </head>
6 <body>
7 <h1>CSL {{year}}</h1>
8 <ul>
9 {{#each teams as |t| ~}}
10 <li class="{{ranking_label @index ../teams}}">
11 {{~log @index~}}
12 <b>{{t.name}}</b>: {{format t.pts ~}}
13 </li>
14 {{/each~}}
15 </ul>
16
17 <p>Rendered by Handlebars from {{engine}} data.</p>
18 </body>
19 </html>