foundryvtt-reve-de-dragon/templates/common/compendium-link.hbs

21 lines
459 B
Handlebars
Raw Normal View History

2022-12-23 00:34:50 +01:00
{{#if pack}}
{{!-- draggable="true" --}}
2022-12-29 02:25:45 +01:00
<a class="content-link"
data-uuid="Compendium.{{pack}}.{{id}}"
data-pack="{{pack}}"
{{#if doctype}}data-doctype="{{doctype}}"{{/if}}
data-id="{{id}}"
2023-01-13 04:54:29 +01:00
>
2022-12-23 00:34:50 +01:00
{{else}}
2022-12-29 02:25:45 +01:00
<a class="rdd-world-content-link"
{{#if doctype}}data-doctype="{{doctype}}"{{/if}}
data-id="{{id}}"
2023-01-13 04:54:29 +01:00
>
2022-12-23 00:34:50 +01:00
{{/if}}
2023-01-13 04:54:29 +01:00
{{#if img}}
<img class="in-text-img" src="{{img}}" alt="{{name}}" />
{{else}}
<i class="fas fa-suitcase"></i>
{{/if}}
{{name}}</a>