GoGronkh/gserver/templates/ats.html

22 lines
850 B
HTML

{{ template "header.html" . }}
<div class="row">
<div class="large-12 columns">
<h1>{{ .title }}</h1>
<ul class="small-block-grid-2 medium-block-grid-4 large-block-grid-6">
{{ range .data }}
<li itemscope itemtype="http://schema.org/Person">
<a class="th" href="/zeige/{{ .AT.Slug.String }}/" itemprop="url">
{{ if .AT.AvatarB.Valid }}
<img alt="{{ .AT.Name.String }}'s Avatar" src="{{ .AT.AvatarB.String }}" itemprop="image" />
{{ else }}
<img alt="Kein Avatar" src="https://placeholdit.imgix.net/~text?txtsize=24&txt=Kein%20Avatar&w=240&h=240" />
{{ end }}
</a>
<br /><a href="/zeige/{{ .AT.Slug.String }}/"><strong itemprop="name">{{ .AT.Name.String }}</strong></a>
</li>
{{ end }}
</ul>
</div>
</div>
{{ template "footer.html" . }}