1
0
Fork 0
yinghong-massage.de/templates/shortcodes/contact.html
2023-08-28 20:45:13 +02:00

28 lines
927 B
HTML

{% import "macros.html" as macros %}
<div class="flex justify-center py-3 text-center">
<table>
<tbody class="divide-y">
<tr>
<th class="p-1.5">Name:</th>
<td class="p-1.5">Yinghong Yang</td>
</tr>
<tr>
<th class="p-1.5">Mobil:</th>
<td class="p-1.5">{{ config.extra.mobile_number }}</td>
</tr>
<tr>
<th class="p-1.5">Tel.:</th>
<td class="p-1.5">{{ config.extra.phone_number }}</td>
</tr>
<tr>
<th class="p-1.5">E-Mail:</th>
<td class="p-1.5">{{ macros::email_link(email=config.extra.email) }}</td>
</tr>
<tr>
<th class="p-1.5">Adresse:</th>
<td class="p-1.5">{{ config.description }}</td>
</tr>
</tbody>
</table>
</div>