mirror of
https://github.com/Roslund/sthlm-mesh.git
synced 2026-05-04 04:22:59 +02:00
11 lines
473 B
HTML
11 lines
473 B
HTML
<!-- stylelint-disable -->
|
|
<div class="lazy-img-container" style='max-width: {{ .Get "max-width" }}; aspect-ratio: {{ .Get "aspect-ratio" | safeCSS }};'>
|
|
|
|
<!-- Bootstrap spinner -->
|
|
<div class="spinner-border text-primary" role="status">
|
|
<span class="visually-hidden">Loading...</span>
|
|
</div>
|
|
|
|
<!-- Lazy-loaded image -->
|
|
<img src='{{ .Get "src" }}' class="lazy" loading="lazy" onload="this.classList.add('loaded'); this.previousElementSibling.style.display='none';">
|
|
</div> |