mirror of
https://github.com/ivabus/www
synced 2025-06-08 11:10:26 +03:00
14 lines
332 B
HTML
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>
|