GoGronkh/gserver/templates/alts.html

41 lines
1.9 KiB
HTML
Raw Normal View History

{{ 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="item" href="/"><span itemprop="name">Home</span></a>
<meta itemprop="position" content="1" />
</li>
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="/zeige/"><span itemprop="name">Sprecher</span></a>
<meta itemprop="position" content="2" />
</li>
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="/zeige/{{ .AT.Slug.String }}/"><span itemprop="name">{{ .AT.Name.String }}</span></a>
<meta itemprop="position" content="3" />
</li>
<li class="current" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="/zeige/{{ .AT.Slug.String }}/testet/"><span itemprop="name">Let's Tests</span></a>
<meta itemprop="position" content="4" />
</li>
<meta itemprop="numberOfItems" content="4" />
</ul>
<ul class="small-block-grid-2 medium-block-grid-4 large-block-grid-5">
{{ range .data }}
<li itemscope itemtype="http://schema.org/Movie">
<a class="th" href="/testet/{{ .LT.Slug.String }}/" itemprop="url">
{{ if .LT.ThumbS.Valid }}
<img alt="" src="{{ .LT.ThumbS.String }}" itemprop="thumbnailUrl" />
{{ else }}
<img alt="" src="https://placeholdit.imgix.net/~text?txtsize=36&txt=Kein%20Thumbnail&w=265&h=149" />
{{ end }}
</a>
<br /><a href="/testet/{{ .LT.Slug.String }}/"><strong itemprop="name">{{ .LT.Name.String }}</strong></a>
</li>
{{ end }}
</ul>
</div>
</div>
{{ template "footer.html" . }}