website/templates/post.html

25 lines
559 B
HTML
Raw Normal View History

2023-12-09 19:25:38 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>MatterLinux | {{.title}}</title>
2024-08-23 14:11:48 +03:00
{{template "parts/head" .}}
2024-01-18 20:01:30 +03:00
<link href="/post.css" rel="stylesheet">
2023-12-09 19:25:38 +03:00
<link href="/md.css" rel="stylesheet">
</head>
<body>
{{template "parts/bar" .}}
2024-01-18 20:01:30 +03:00
<main>
<div class="md">
<h1>{{.post.Title}}</h1>
</div>
2024-08-23 14:11:48 +03:00
<div class="subtext">
<p class="date">{{.post.Date}}</p>
<p class="author">by {{.post.Author}}</p>
</div>
2023-12-09 19:25:38 +03:00
<div class="md">
{{.post.HTML}}
2023-12-09 19:25:38 +03:00
</div>
2024-01-18 20:01:30 +03:00
</main>
2023-12-09 19:25:38 +03:00
</body>
</html>