webgames/templates/carcassonne/field.svg

14 lines
533 B
XML
Raw Normal View History

2021-10-31 14:44:14 +01:00
<svg viewBox="0 0 {{ width*100 }} {{ height*100 }}">
{% for card in cards %}
{{ card }}
{% endfor %}
{% for empty in empties %}
<g transform="translate({{ empty[2] }} {{ empty[3] }})">
<path class="plus" data-x="{{ empty[0] }}" data-y="{{ empty[1] }}" d="M 30 45 H 45 V 30 H 55 V 45 H 70 V 55 H 55 V 70 H 45 V 55 H 30 Z" />
<path class="empty" data-x="{{ empty[0] }}" data-y="{{ empty[1] }}" d="M 0 0 H 100 V 100 H 0 Z" />
</g>
{% endfor %}
{% for follower in follows %}
{{ follower }}
{% endfor %}
</svg>