Same changes

This commit is contained in:
vxclutch
2026-05-24 13:53:50 -04:00
parent 877d785e15
commit cbf9f0e695
6 changed files with 178 additions and 13 deletions

View File

@@ -6,12 +6,26 @@
<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>