Files
l5rx-chiaroscuro/system/templates/journal/journal-text.html
Vlyan e7bd9ea3fb Working on Compatibility for FVTT v10
SendToChat : Fix Journal behaviour
2022-07-23 21:59:13 +02:00

17 lines
593 B
HTML

<div class="{{cssClass}}" data-actor-id="{{actor._id}}" data-item-id="{{data._id}}">
<header class="card-header">
<h2 class="item-name">
{{#ifCond data.src '&&' data.text.content}}<img src="{{data.src}}" title="{{data.name}}" />{{/ifCond}} {{data.name}}
</h2>
</header>
<section class="sheet-body">
<p>
{{#if data.text.content}}
{{{data.text.content}}}
{{else}}
{{#if data.src}}<img src="{{data.src}}" title="{{data.name}}" />{{/if}}
{{/if}}
</p>
</section>
</div>