1
0
Fork 0
yinghong-massage.de/templates/shortcodes/contact.html

29 lines
927 B
HTML
Raw Normal View History

{% import "macros.html" as macros %}
2023-05-31 21:51:41 +00:00
<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>
2023-05-31 21:51:41 +00:00
</tr>
<tr>
<th class="p-1.5">Adresse:</th>
2023-08-28 18:45:13 +00:00
<td class="p-1.5">{{ config.description }}</td>
2023-05-31 21:51:41 +00:00
</tr>
</tbody>
</table>
2022-10-29 19:12:38 +00:00
</div>