Files
hugo-theme-stack/layouts/_partials/article/components/links.html
T

33 lines
1.3 KiB
HTML
Raw Normal View History

2021-12-28 11:28:20 +01:00
<div class="article-list--compact links">
{{ range $i, $link := .Params.links }}
<article>
<a href="{{ $link.website }}" target="_blank" rel="noopener">
<div class="article-details">
<h2 class="article-title">
{{- $link.title -}}
</h2>
<footer class="article-footer">
2021-12-28 11:28:20 +01:00
{{ with $link.description }}
{{ . }}
{{ else }}
{{ $link.website }}
{{ end }}
</footer>
</div>
{{- $image := partial "helper/image" (dict "Image" $link.image "Resources" $.Resources) -}}
{{- with $image -}}
2021-12-28 11:28:20 +01:00
<div class="article-image">
<img
src="{{ .Permalink }}"
loading="lazy"
{{ with $link.alt }} alt="{{ . }}"{{ end }}
{{ with .Width }} width="{{ . }}"{{ end }}
{{ with .Height }} height="{{ . }}"{{ end }}
>
2021-12-28 11:28:20 +01:00
</div>
{{ end }}
</a>
</article>
{{ end }}
</div>