website/templates/post.html

25 lines
559 B
HTML
Raw Permalink Normal View History

2023-12-09 16:25:38 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<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">
{{.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>