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

19 lines
No EOL
454 B
HTML

{{ define "content" }}
<div class="cols">
<section>
<h2>{{ .user }}</h2>
<dl>
<dt>Homepage</dt>
<dd><a href="{{ .homepage }}" target="_blank">{{ .homepage }}</a></dd>
<dt>About</dt>
<dd>{{ .about }}</dd>
</dl>
</section>
<section>
<h2>Statuses</h2>
{{ range .statuses }}
{{ template "status" . }}
{{ end }}
</section>
</div>
{{ end }}