An HTML-only Bluesky frontend
at main 15 lines 517 B view raw
1{{define "image_embed"}} 2{{if .Post.Embed}} 3{{if eq .Post.Embed.Type "app.bsky.embed.recordWithMedia#view"}} 4{{range .Post.Embed.Media.Images}} 5<img src="{{.Thumb}}" alt="{{.Alt}}" class="recordWithMedia-view" 6 style="position:relative;max-height:50%;max-width:100%;"> 7{{end}} 8{{end}} 9{{if eq .Post.Embed.Type "app.bsky.embed.images#view"}} 10{{range .Post.Embed.Images}} 11<img src="{{.Thumb}}" alt="{{.Alt}}" class="images-view" style="position:relative;max-height:50%;max-width:100%;"> 12{{end}} 13{{end}} 14{{end}} 15{{end}}