2023-12-09 16:25:38 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2024-01-06 20:20:58 +00:00
|
|
|
<title>MatterLinux | {{.title}}</title>
|
2023-12-09 16:25:38 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=1200">
|
|
|
|
<link href="/style.css" rel="stylesheet">
|
|
|
|
<link href="/md.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{template "parts/bar" .}}
|
|
|
|
<div class="post">
|
2024-01-06 20:20:58 +00:00
|
|
|
<h1>{{.post.Title}}</h1>
|
2023-12-09 16:25:38 +00:00
|
|
|
<p>{{.post.Date}} | by {{.post.Author}}</p>
|
|
|
|
<div class="md">
|
2024-01-06 20:20:58 +00:00
|
|
|
{{.post.HTML}}
|
2023-12-09 16:25:38 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|