s1llyw0rdz/web/handler/html/user.html

19 lines
454 B
HTML
Raw Normal View History

2021-11-24 06:30:19 +00:00
{{ define "content" }}
2021-11-25 06:37:30 +00:00
<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>
2021-11-24 06:30:19 +00:00
{{ end }}