mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.git
synced 2024-11-08 09:53:14 +00:00
c1d211e971
This reverts commit 5abf9a38f7
.
13 lines
474 B
HTML
13 lines
474 B
HTML
{{ $illustration := .Get 0 }}
|
|
{{ $title := .Get 1 }}
|
|
<div class="card sp-service-card h-100">
|
|
<object class="d-flex justify-content-center align-items-center card-img-top sp-service-icon" type="image/svg+xml" data="{{ $illustration }}">
|
|
<div class="error">
|
|
<i class="fa-solid fa-triangle-exclamation"></i>
|
|
</div>
|
|
</object>
|
|
<div class="card-body">
|
|
<h4 class="card-title">{{ $title }}</h4>
|
|
{{ .Inner }}
|
|
</div>
|
|
</div> |