Files
adamantium/slices/main/templates/shared/_photo_post.html.slim
Daniel Nitsikopoulos 4b5f10cd22 Minify home images
2024-09-17 21:51:39 +10:00

16 lines
877 B
Plaintext

- if extended
- post.photo_thumbnails.each_with_index do |photo, idx|
div class="rounded max-w-xs"
a href="#{post.permalink}#photo-#{idx}"
img loading="lazy" class="rounded object-cover transition-transform ease-out hover:scale-105 h-48 w-48" src="#{photo}" alt="#{photo["alt"]}"
- else
- if post.photos.count > 0
div class="rounded max-w-xs"
a href="#{post.permalink}"
img loading="lazy" class="rounded object-cover transition-transform ease-out hover:scale-105 h-48 w-48" src="#{post.photo_thumbnails[0]}" alt="#{post.photos[0]["alt"]}"
- if post.videos.count > 0
div class="rounded max-w-xs"
a href="#{post.permalink}"
video class="rounded object-cover transition-transform ease-out hover:scale-105 h-48 w-48" loop=false muted=true controls=false
source type="video/mp4" src="#{post.videos[0]["value"]}"