Files
DiceCloud/rpg-docs/client/views/character/buffs/customBuffViewList/customBuffViewList.html
2017-08-09 15:01:20 +01:00

13 lines
267 B
HTML

<template name="customBuffViewList">
{{#if buffs.count}}
<div class="buffs">
<div class="paper-font-title" style="margin-bottom: 8px;">
Buffs
</div>
{{#each buff in buffs}}
{{> customBuffView buff=buff}}
{{/each}}
</div>
{{/if}}
</template>