27 lines
601 B
Cheetah
27 lines
601 B
Cheetah
<!doctype html>
|
|
<html lang="{{.Lang}}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>{{.Title}}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{.Title}}</h1>
|
|
{{range .Posts}}
|
|
<article>
|
|
<a href=/proxy/8080/post/{{ .Id }}>
|
|
<h2>{{.Title}}</h2>
|
|
</a>
|
|
<div>
|
|
{{.HTML}}
|
|
</div>
|
|
<footer>
|
|
<p>
|
|
{{.Date}}
|
|
</p>
|
|
</footer>
|
|
</article>
|
|
|
|
{{ end }}
|
|
</body>
|
|
</html> |