More html cleanup to match W3c

This commit is contained in:
2023-09-22 14:30:06 +02:00
parent 5ebce9480e
commit 8c15441fe5
13 changed files with 38 additions and 34 deletions

View File

@@ -17,18 +17,18 @@
<tbody>
{% if d.logo %}
<tr>
<th width="35%" scope="row">Logo</th>
<th class="th-35" scope="row">Logo</th>
<td><img style="max-height: 48px" src="{{ d.logo.url }}" /></td>
</tr>
{% endif %}
{% if d.website %}
<tr>
<th width="35%" scope="row">Website</th>
<th class="th-35" scope="row">Website</th>
<td><a href="{{ d.website }}" target="_blank"><i class="bi bi-box-arrow-up-right"></i></a></td>
</tr>
{% endif %}
<tr>
<th width="35%" scope="row">Category</th>
<th class="th-35" scope="row">Category</th>
<td>{{ d.category | title }}</td>
</tr>
</tbody>