This repository has been archived on 2026-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2022-02-18 19:31:53 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-02-19 11:00:58 +08:00
|
|
|
<svg width="{{ general_width }}" height="{{ general_height }}" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
2022-03-26 08:02:25 +08:00
|
|
|
<title>{{ title }} | {{ address }}</title>
|
2022-02-18 19:31:53 +08:00
|
|
|
<g>
|
|
|
|
|
{% for value in context %}
|
2022-02-28 21:18:05 +08:00
|
|
|
<image x="{{ value.position }}" y="0" width="{{ value.width }}" height="{{ value.height }}"
|
|
|
|
|
xlink:href="{{ value.base64 }}"></image>
|
2022-02-18 19:31:53 +08:00
|
|
|
{% endfor %}
|
|
|
|
|
</g>
|
|
|
|
|
</svg>
|