35 lines
985 B
HTML
Executable file
35 lines
985 B
HTML
Executable file
<div
|
|
class="bg-theme-light dark:bg-darkmode-theme-light rounded p-8 text-center">
|
|
{{ $image:= .Params.image }}
|
|
{{ if $image }}
|
|
<a href="{{ .RelPermalink }}">
|
|
{{ partial "image" (dict "Src" $image "Context" .Page "Alt" .Title "Class" "mx-auto mb-6 rounded" "size" "120x120") }}
|
|
</a>
|
|
{{ end }}
|
|
<h4 class="mb-3">
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
</h4>
|
|
<p class="mb-4">
|
|
{{ .Description }}
|
|
</p>
|
|
<ul class="social-icons">
|
|
{{ if .Params.website }}
|
|
<li>
|
|
<a href="{{ .Params.website | safeURL }}" target="_blank" rel="noopener nofollow">
|
|
<span class="sr-only">Site internet</span>
|
|
<i class="fas fa-globe"></i>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
|
|
|
|
{{ range .Params.social }}
|
|
<li>
|
|
<a href="{{ .link | safeURL }}" target="_blank" rel="noopener nofollow">
|
|
<span class="sr-only">{{ .title }}</span>
|
|
<i class="{{ .icon }}"></i>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|