An HTML-only Bluesky frontend
1{{define "list"}}
2<!DOCTYPE html>
3<html>
4{{template "list_head" .}}
5
6<body>
7 {{template "list_header" .}}
8
9 <!-- list description -->
10 <h1 style="margin-bottom:0;">{{.Name}}</h1>
11 <span>by <a href="/profile/{{.Creator.Handle}}">@{{.Creator.Handle}}</a></span>
12 <p>{{.DescriptionHTML}}</p>
13 <hr>
14
15 <span id="feed"></span>
16 {{range .Feed}}
17 {{template "feed_post" .}}
18 {{end}}
19</body>
20
21</html>
22{{end}}
23
24{{template "list" .}}