hikan.ru/mvc/views/pages/posts.gohtml

25 lines
532 B
Plaintext

<!DOCTYPE html>
<html lang="en">
{{ template "head" . }}
<body>
{{ template "header" . }}
<main>
{{ range $ind, $post := .posts }}
<div class="post">
<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>