1
0
Fork 0
mirror of https://github.com/owncast/owncast.git synced 2024-10-28 10:09:39 +01:00

feat: add rel-me link attr and enclosing list tags. Closes #3290

This commit is contained in:
Gabe Kangas 2024-03-10 15:48:33 -07:00
parent f84276ac39
commit a42071951d
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -1,7 +1,7 @@
<!doctype html>
<html lang="en">
<head>
<head>
<meta charset="utf-8">
<title>{{.Name}}</title>
@ -54,30 +54,32 @@
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
</head>
<body>
<body>
<h1>{{.Name}}</h1>
<center>
<img src="{{.Thumbnail}}" width=10% />
<img src="{{.Thumbnail}}" width=10% alt="Live stream logo or thumbnail"/>
</center>
<h3>{{.Summary}}</h3>
<ul>
{{range .Tags}}
<li>{{.}}</li>
{{end}}
</ul>
<br/>
<h3>Links for {{.Name}}:</h3>
<ul>
{{range .SocialHandles}}
<li><a href="{{.URL}}">{{.Platform}}</a></li>
<li><a href="{{.URL}}" rel="me">{{.Platform}}</a></li>
{{end}}
</ul>
</body>
</body>
</html>