When the dark mode is default, or if you set the page to dark mode and then refresh, the content in "General Information" can't be seen. This PR fixes the problem.
9 lines
309 B
HTML
9 lines
309 B
HTML
<table class="table table-sm table-borderless table-responsive table-cv-map">
|
|
{% for content in entry.contents %}
|
|
<tr>
|
|
<td class="p-1 pr-2 font-weight-bold"><b>{{ content.name }}</b></td>
|
|
<td class="p-1 pl-2 font-weight-light text">{{ content.value }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|