foundryvtt-reve-de-dragon/templates/post-item.html

15 lines
331 B
HTML
Raw Normal View History

2021-01-01 21:11:56 +01:00
<div class="post-item" data-transfer="{{transfer}}">
<h3><b>{{name}}</b></h3>
{{#if img}}
2021-10-29 23:01:15 +02:00
<img class="chat-icon" src="{{img}}" title="{{name}}" />
2021-01-01 21:11:56 +01:00
{{/if}}
<p class="card-content">{{{data.description}}}</p>
<p>
{{#each properties as |property p|}}
<span>{{{property}}}</span><br>
{{/each}}
</p>
2021-01-01 21:11:56 +01:00
</div>