2023-12-09 16:25:38 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2024-01-06 20:20:58 +00:00
|
|
|
<title>MatterLinux | News</title>
|
2024-08-23 11:11:48 +00:00
|
|
|
{{template "parts/head" .}}
|
2024-01-18 17:01:30 +00:00
|
|
|
<link href="/news.css" rel="stylesheet">
|
2024-08-23 11:11:48 +00:00
|
|
|
<link rel="alternate" type="application/atom+xml" href="/news/feed.atom" title="Atom Feed">
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="/news/feed.rss" title="RSS Feed">
|
2023-12-09 16:25:38 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{template "parts/bar" .}}
|
2024-01-18 17:01:30 +00:00
|
|
|
<main>
|
2024-08-23 11:11:48 +00:00
|
|
|
<div class="feed-menu">
|
|
|
|
<p>Feeds</p>
|
|
|
|
<div class="feeds">
|
|
|
|
<a href="/news/feed.atom">Atom</a>
|
|
|
|
<a href="/news/feed.rss">RSS</a>
|
|
|
|
<a href="/news/feed.json">JSON</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-01-18 17:01:30 +00:00
|
|
|
{{range .news}}
|
|
|
|
<a href="/news/{{.ID}}" class="small">
|
|
|
|
<h1>{{.Date}}</h1>
|
|
|
|
<h1>{{.Title}}</h1>
|
2023-12-09 16:25:38 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2024-01-18 17:01:30 +00:00
|
|
|
</main>
|
2023-12-09 16:25:38 +00:00
|
|
|
</body>
|
|
|
|
</html>
|