css cleanup, added downloads page

This commit is contained in:
ngn
2024-01-18 20:01:30 +03:00
parent 1e9893cfc2
commit d33b18557e
19 changed files with 284 additions and 160 deletions

View File

@ -4,17 +4,20 @@
<title>MatterLinux | {{.title}}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=1200">
<link href="/style.css" rel="stylesheet">
<link href="/global.css" rel="stylesheet">
<link href="/post.css" rel="stylesheet">
<link href="/md.css" rel="stylesheet">
</head>
<body>
{{template "parts/bar" .}}
<div class="post">
<h1>{{.post.Title}}</h1>
<p>{{.post.Date}} | by {{.post.Author}}</p>
<main>
<div class="md">
<h1>{{.post.Title}}</h1>
</div>
<p class="subtext">{{.post.Date}} | by {{.post.Author}}</p>
<div class="md">
{{.post.HTML}}
</div>
</div>
</main>
</body>
</html>