mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2024-10-01 01:35:57 -04:00
Fix cardv2 dark mode images (#781)
Signed-off-by: Daniel Gray <dng@disroot.org>
This commit is contained in:
parent
70960fdd38
commit
9787a7e022
@ -28,16 +28,20 @@
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p class="card-text">
|
||||
<img
|
||||
src="{{include.image}}"
|
||||
<picture>
|
||||
{% if include.image-dark %}
|
||||
data-theme-src="{{include.image-dark}}"
|
||||
{% endif %}
|
||||
height="120"
|
||||
width="120"
|
||||
class="panel-pic"
|
||||
alt="{{include.title}} logo"
|
||||
>
|
||||
<source
|
||||
srcset="{{include.image-dark}}"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
>{% endif %}
|
||||
<img
|
||||
src="{{include.image}}"
|
||||
height="120"
|
||||
width="120"
|
||||
class="panel-pic"
|
||||
alt="{{include.title}} logo"
|
||||
>
|
||||
</picture>
|
||||
{{ include.description }}
|
||||
{% if include.labels %}
|
||||
{% assign labels = include.labels | split:"|" %}
|
||||
|
Loading…
Reference in New Issue
Block a user