s1llyw0rdz/web/handler/html/user.html

11 lines
243 B
HTML
Raw Normal View History

2021-11-24 06:30:19 +00:00
{{ define "content" }}
<section>
<h2>{{ .user }}</h2>
{{ range .statuses }}
<article class="status">
<div class="username">{{ .TimeAgo }}</div>
<p>{{ .Content }}</p>
</article>
{{ end }}
</section>
{{ end }}