GoGronkh/gserver/templates/ats.html
2015-10-02 15:23:35 +02:00

33 lines
1.4 KiB
HTML

{{ template "header.html" . }}
<div class="row">
<div class="large-12 columns">
<h1>{{ .title }}</h1>
<ul class="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="url" href="/"><span itemprop="name">Home</span></a>
<meta itemprop="position" content="1" />
</li>
<li class="current" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="url" href="/zeige"><span itemprop="name">Sprecher</span></a>
<meta itemprop="position" content="2" />
</li>
<meta itemprop="numberOfItems" content="2" />
</ul>
<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="" src="{{ .AT.AvatarB.String }}" itemprop="image" />
{{ else }}
<img alt="" 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" . }}