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

14 lines
310 B
HTML
Raw Normal View History

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