19 lines
390 B
HTML
19 lines
390 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>{{ .Title }}</title>
|
||
|
<link rel="stylesheet" href="/simple.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ if .Content }}
|
||
|
{{ .Content }}{{ end }}
|
||
|
<ul>
|
||
|
{{ range .Pages }}<li><a href="{{ .Path }}">{{ if not .Date.IsZero -}}
|
||
|
{{ .Date.Format "2006-01-02" }} {{end}}{{ .Title }}</a></li>
|
||
|
{{ end -}}
|
||
|
</ul>
|
||
|
</body>
|
||
|
|
||
|
</html>
|