www/src/layouts/_default/single.html
2023-03-27 11:01:47 -04:00

14 lines
332 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Title }}</title>
</head>
<body>
<h1>{{ .Title }}</h1>
<p>{{ .Date.Format "2006-01-02" }}</p>
{{ .Content }}
<a href="{{ "blog" | relURL }}">Back to blog</a>
</body>
</html>