Inital commits

This commit is contained in:
vxclutch
2026-05-22 22:19:57 -04:00
commit 877d785e15
7 changed files with 138 additions and 0 deletions

17
templates/main.html Normal file
View File

@@ -0,0 +1,17 @@
<!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>
<h2>Latest News</h2>
<ul>
{{range .Articles}}
<li><a href="{{.Link}}">{{.Title}}</a></li>
{{end}}
</ul>
<body>
</body>
</html>