Files
wire/templates/main.html
2026-05-24 13:53:50 -04:00

32 lines
500 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wire News</title>
</head>
<h1>Wire {{.Version}}</h1>
{{if .Config.News}}
<h2>Latest News</h2>
<ul>
{{range .Articles}}
<li><a href="{{.Link}}">{{.Title}}</a></li>
{{end}}
</ul>
{{end}}
{{if .Config.Quotes}}
<h2>Fortification of the Mind</h2>
{{.Quote}}
{{end}}
{{if .Config.Ramble}}
<h2>Schizo Ramblings</h2>
{{.Ramblings}}
{{end}}
<body>
</body>
</html>