1
0
Fork 0

Adjust contact table

This commit is contained in:
Mo 2022-10-29 21:12:38 +02:00
parent 06e224e62e
commit 0272d44b42

View file

@ -1,20 +1,24 @@
<table class="table">
<div class="text-center">
<div class="d-inline-flex">
<table class="table">
<tbody>
<tr>
<th scope="row">Mobil:</th>
<td>{{ config.extra.mobile_number }}</td>
<th class="pe-3" scope="row">Mobil:</th>
<td class="ps-3">{{ config.extra.mobile_number }}</td>
</tr>
<tr>
<th scope="row">Tel.:</th>
<td>{{ config.extra.phone_number }}</td>
<th class="pe-3" scope="row">Tel.:</th>
<td class="ps-3">{{ config.extra.phone_number }}</td>
</tr>
<tr>
<th scope="row">E-Mail:</th>
<td><a href="mailto:{{ config.extra.email }}">{{ config.extra.email }}</a></td>
<th class="pe-3" scope="row">E-Mail:</th>
<td class="ps-3"><a href="mailto:{{ config.extra.email }}">{{ config.extra.email }}</a></td>
</tr>
<tr>
<th scope="row">Adresse:</th>
<td>{{ config.extra.address }}</td>
<th class="pe-3" scope="row">Adresse:</th>
<td class="ps-3">{{ config.extra.address }}</td>
</tr>
</tbody>
</table>
</table>
</div>
</div>