An HTML-only Bluesky frontend
1{{define "external_embed"}}
2{{if .Post.Embed}}
3{{if eq .Post.Embed.Type "app.bsky.embed.external#view"}}
4<article>
5 {{if .Post.Embed.External.Title}}
6 <h3>
7 <a href="{{.Post.Embed.External.URI}}">{{.Post.Embed.External.Title}}</a>
8 </h3>
9 <p style="word-wrap:break-word;text-overflow:ellipsis;">{{.Post.Embed.External.Description}}</p>
10 {{else}}
11 <h3>
12 <a href="{{.Post.Embed.External.URI}}">{{.Post.Embed.External.URI}}</a>
13 </h3>
14 {{end}}
15</article>
16{{end}}
17{{end}}
18{{end}}