1
0
Fork 0
yinghong-massage.de/templates/shortcodes/contact.html
2023-05-31 23:51:41 +02:00

28 lines
949 B
HTML

<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">
<a href="mailto:{{ config.extra.email }}">{{ config.extra.email }}</a>
</td>
</tr>
<tr>
<th class="p-1.5">Adresse:</th>
<td class="p-1.5">{{ config.extra.address }}</td>
</tr>
</tbody>
</table>
</div>