2022-08-04 21:34:47 -07:00
|
|
|
{% macro key_image(ref) %}
|
|
|
|
{% if ref.key_image %}
|
|
|
|
<a class='key_image' href="{{ ref.key_image.src }}">
|
|
|
|
<img src="{{ ref.key_image.src|replace('.','_thumb.') }}" alt="{{ ref.key_image.alt}}">
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% endmacro %}
|
2022-08-04 23:47:16 -07:00
|
|
|
|
|
|
|
{% macro rolltable(t) %}
|
|
|
|
<table>
|
|
|
|
<tr><th>Roll</th><th>Effect</th></tr>
|
|
|
|
{% for die in t %}
|
|
|
|
<tr><td>{{ die }}</td><td>{{ t[die] }}</td></tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endmacro %}
|