fixed statblock styling and region layout

This commit is contained in:
evilchili
2022-08-04 23:47:16 -07:00
parent 49971ae270
commit 9e960cb251
5 changed files with 107 additions and 213 deletions
@@ -5,3 +5,12 @@
</a>
{% endif %}
{% endmacro %}
{% 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 %}