-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathfooter.twig
More file actions
19 lines (19 loc) · 677 Bytes
/
footer.twig
File metadata and controls
19 lines (19 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<table style="width:100%; border:0; {% if not qrcode %}padding-left:15px;{% endif %} font-size:8px;">
<tr>
{% if qrcode %}
<td width="{{ qrcodeSize }}px">
<img src="data:image/png;base64,{{ qrcode }}" style="width:{{ qrcodeSize }}px" />
</td>
{% endif %}
<td style="vertical-align: bottom; padding: 0px 0px 15px 0px; line-height:1.5em;">
<a href="{{ linkToSite }}" style="text-decoration: none; color: unset;">{{ signedBy|raw }}</a>
{% if validateIn %}
<br>
<a href="{{ validationSite }}"
style="text-decoration: none; color: unset;">
{{ validateIn|replace({'%s': validationSite})|raw }}
</a>
{% endif %}
</td>
</tr>
</table>