threadr-rewritten/templates/pages/news.html

25 lines
483 B
HTML

{{define "news"}}
<!DOCTYPE html>
<html>
<head>
<title>{{.Title}}</title>
<link rel="stylesheet" href="{{.StaticPath}}/style.css">
</head>
<body>
{{template "navbar" .}}
<main>
<header>
<h2>News</h2>
</header>
<section>
<ul>
{{range .News}}
<li>{{.}}</li>
{{end}}
</ul>
</section>
</main>
{{template "cookie_banner" .}}
</body>
</html>
{{end}}