14 lines
304 B
Handlebars
14 lines
304 B
Handlebars
<h1>
|
|
{{title}}
|
|
</h1>
|
|
<div class="Panel">
|
|
<div class="Panel-body">
|
|
{{#each opponents}}
|
|
<div class="Panel-row Panel-row--withCells u-textDecorationNone">
|
|
<a class="Panel-cell" href="opponent/{{this.id}}">
|
|
{{this.name}}
|
|
</a>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
</div> |