25 lines
519 B
Plaintext
25 lines
519 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{{ template "head" . }}
|
|
<body>
|
|
{{ template "header" . }}
|
|
<main>
|
|
|
|
{{ range $ind, $post := .posts }}
|
|
<div>
|
|
<p>
|
|
{{ $post.Preview }}
|
|
</p>
|
|
<p>
|
|
<a href="{{ $post.Link }}">read more</a>
|
|
</p>
|
|
<p>
|
|
<code>changed at: {{ $post.ModTimestamp }}</code>
|
|
</p>
|
|
</div>
|
|
{{ end }}
|
|
|
|
</main>
|
|
{{ template "footer" . }}
|
|
</body>
|
|
</html> |