mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.git
synced 2025-01-15 21:36:42 +00:00
fix: remove unused wrapper
This commit is contained in:
parent
b8e58cba1f
commit
d76c3ba051
|
@ -104,10 +104,10 @@
|
||||||
margin-top: 6rem;
|
margin-top: 6rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sp-supperted-by-img {
|
.sp-supported-by-img {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
margin: 1rem;
|
margin: 1rem;
|
||||||
width: 15rem;
|
width: 10rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sp-supported-by-list {
|
.sp-supported-by-list {
|
||||||
|
@ -144,11 +144,6 @@ a.nav-link.sp-coming-soon {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.sp-feature-img.error {
|
|
||||||
min-width: 20rem;
|
|
||||||
min-height: 20rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
|
@ -118,7 +118,6 @@ linkTitle = "SelfPrivacy"
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="row w-100 mt-5 mb-3">
|
<div class="row w-100 mt-5 mb-3">
|
||||||
<h3 class="mx-auto text-center">For a good life</h3>
|
<h3 class="mx-auto text-center">For a good life</h3>
|
||||||
</div>
|
</div>
|
||||||
|
@ -193,7 +192,7 @@ linkTitle = "SelfPrivacy"
|
||||||
<div class="card sp-supported-by-card h-100">
|
<div class="card sp-supported-by-card h-100">
|
||||||
<div class="card-body sp-supported-by-list">
|
<div class="card-body sp-supported-by-list">
|
||||||
<a href="https://nlnet.nl/project/SelfPrivacy/" target="_blank" rel="noopener noreferrer">
|
<a href="https://nlnet.nl/project/SelfPrivacy/" target="_blank" rel="noopener noreferrer">
|
||||||
<object role="img" aria-label="NLnet foundation" class="d-flex justify-content-center align-items-center sp-supperted-by-img" type="image/svg+xml" data="/images/logos/nlnet.svg">
|
<object role="img" aria-label="NLnet foundation" class="d-flex justify-content-center align-items-center sp-supported-by-img" type="image/svg+xml" data="/images/logos/nlnet.svg">
|
||||||
<div class="error">
|
<div class="error">
|
||||||
<i class="fa-solid fa-triangle-exclamation"></i>
|
<i class="fa-solid fa-triangle-exclamation"></i>
|
||||||
NLnet foundation
|
NLnet foundation
|
||||||
|
@ -201,7 +200,7 @@ linkTitle = "SelfPrivacy"
|
||||||
</object>
|
</object>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://privacyaccelerator.org" target="_blank" rel="noopener noreferrer">
|
<a href="https://privacyaccelerator.org" target="_blank" rel="noopener noreferrer">
|
||||||
<object role="img" aria-label="Privacy Accelerator" class="d-flex justify-content-center align-items-center sp-supperted-by-img" type="image/svg+xml" data="/images/logos/PrivacyAcceleratorLogo.svg">
|
<object role="img" aria-label="Privacy Accelerator" class="d-flex justify-content-center align-items-center sp-supported-by-img" type="image/svg+xml" data="/images/logos/PrivacyAcceleratorLogo.svg">
|
||||||
<div class="error">
|
<div class="error">
|
||||||
<i class="fa-solid fa-triangle-exclamation"></i>
|
<i class="fa-solid fa-triangle-exclamation"></i>
|
||||||
Privacy Accelerator
|
Privacy Accelerator
|
||||||
|
|
|
@ -10,23 +10,19 @@
|
||||||
{{ .Inner }}
|
{{ .Inner }}
|
||||||
</div>
|
</div>
|
||||||
{{ if $illustration }}
|
{{ if $illustration }}
|
||||||
<div class="col-md-4 col-xs-12 my-auto">
|
<object role="img" class="col-md-4 col-xs-12 my-auto d-flex justify-content-center align-items-center card-img-top" type="image/svg+xml" data="{{ $illustration.RelPermalink }}">
|
||||||
<object role="img" class="d-flex justify-content-center align-items-center card-img-top" type="image/svg+xml" data="{{ $illustration.RelPermalink }}">
|
|
||||||
<div class="error sp-feature-img">
|
<div class="error sp-feature-img">
|
||||||
<i class="fa-solid fa-triangle-exclamation"></i>
|
<i class="fa-solid fa-triangle-exclamation"></i>
|
||||||
</div>
|
</div>
|
||||||
</object>
|
</object>
|
||||||
</div>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ if $illustration }}
|
{{ if $illustration }}
|
||||||
<div class="col-md-4 col-xs-12 my-auto">
|
<object role="img" class="col-md-4 col-xs-12 my-auto d-flex justify-content-center align-items-center card-img-top" type="image/svg+xml" data="{{ $illustration.RelPermalink }}">
|
||||||
<object role="img" class="d-flex justify-content-center align-items-center card-img-top" type="image/svg+xml" data="{{ $illustration.RelPermalink }}">
|
|
||||||
<div class="error sp-feature-img">
|
<div class="error sp-feature-img">
|
||||||
<i class="fa-solid fa-triangle-exclamation"></i>
|
<i class="fa-solid fa-triangle-exclamation"></i>
|
||||||
</div>
|
</div>
|
||||||
</object>
|
</object>
|
||||||
</div>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<div class="col-md-8 col-xs-12 my-auto px-5">
|
<div class="col-md-8 col-xs-12 my-auto px-5">
|
||||||
{{ if $title }}
|
{{ if $title }}
|
||||||
|
|
Loading…
Reference in a new issue