0

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

@ -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>
<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>
</html>