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>
|
2024-08-23 11:11:48 +00:00
|
|
|
{{template "parts/head" .}}
|
2024-01-18 17:01:30 +00:00
|
|
|
<link href="/post.css" rel="stylesheet">
|
2023-12-09 16:25:38 +00:00
|
|
|
<link href="/md.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{template "parts/bar" .}}
|
2024-01-18 17:01:30 +00:00
|
|
|
<main>
|
|
|
|
<div class="md">
|
|
|
|
<h1>{{.post.Title}}</h1>
|
|
|
|
</div>
|
2024-08-23 11:11:48 +00:00
|
|
|
<div class="subtext">
|
|
|
|
<p class="date">{{.post.Date}}</p>
|
|
|
|
<p class="author">by {{.post.Author}}</p>
|
|
|
|
</div>
|
2023-12-09 16:25:38 +00:00
|
|
|
<div class="md">
|
2024-01-06 20:20:58 +00:00
|
|
|
{{.post.HTML}}
|
2023-12-09 16:25:38 +00:00
|
|
|
</div>
|
2024-01-18 17:01:30 +00:00
|
|
|
</main>
|
2023-12-09 16:25:38 +00:00
|
|
|
</body>
|
|
|
|
</html>
|