29 lines
572 B
HTML
29 lines
572 B
HTML
{% include 'page.html' %}
|
|
{% include 'header.html' %}
|
|
{{description}}
|
|
<p> </p>
|
|
<p>Contact information for this gateway.</p>
|
|
<table style="margin-left: auto; margin-right: auto;" border="black">
|
|
<tbody>
|
|
<tr>
|
|
<td><strong>Name</strong></td>
|
|
<td>{{contact_name}} </td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Callsign</strong></td>
|
|
<td> {{contact_call}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>E-Mail</strong></td>
|
|
<td> {{contact_email}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Website</strong></td>
|
|
<td> {{contact_website}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<p> </p>
|
|
{% include 'footer.html' %}
|
|
|