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

25 lines
535 B
Plaintext

<!DOCTYPE html>
<html lang="en">
{{ template "head" . }}
<body>
{{ template "header" . }}
<main>
{{ range $key, $post := .posts }}
<div class="post">
<p>
{{ $post.Preview }}
</p>
<p>
<a href="{{ $post.Link }}">read more</a>
</p>
<p>
<code>created at: {{ $post.CreateTimestamp }}</code>
</p>
</div>
{{ end }}
</main>
{{ template "footer" . }}
</body>
</html>