GoGronkh/gserver/templates/lps.html

25 lines
1 KiB
HTML
Raw Normal View History

{{ template "header.html" . }}
<div class="row">
<div class="large-12 columns">
<h1>{{ .title }}</h1>
<ul class="small-block-grid-3 medium-block-grid-5 large-block-grid-5">
{{ range .data }}
2015-09-28 19:35:37 +00:00
<li itemscope itemtype="http://schema.org/TVSeries">
<a class="th" href="/lets-play/{{ .LP.Slug.String }}/" itemprop="url">
{{ if .LP.PosterS.Valid }}
<img alt="" src="{{ .LP.PosterS.String }}" itemprop="thumbnailUrl" />
{{ else }}
<img alt="" src="https://placeholdit.imgix.net/~text?txtsize=24&txt=Kein%20Cover&w=178&h=265" />
{{ end }}
</a>
2015-09-28 19:35:37 +00:00
<br /><a href="/lets-play/{{ .LP.Slug.String }}/"><strong itemprop="name">{{ .LP.Name.String }}</strong></a>
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
<br />von <a href="/zeige/{{ .AT.Slug.String }}/" itemprop="url"><span itemprop="name">{{ .AT.Name.String }}</span></a>
</span>
</li>
{{ end }}
</ul>
</div>
</div>
{{ template "footer.html" . }}