s1llyw0rdz/web/handler/html/user.html
2021-11-24 07:30:19 +01:00

11 lines
No EOL
243 B
HTML

{{ define "content" }}
<section>
<h2>{{ .user }}</h2>
{{ range .statuses }}
<article class="status">
<div class="username">{{ .TimeAgo }}</div>
<p>{{ .Content }}</p>
</article>
{{ end }}
</section>
{{ end }}