GoGronkh/gserver/templates/lt.html

26 lines
1.6 KiB
HTML
Raw Normal View History

{{ template "header.html" . }}
<div class="row" itemscope itemtype="http://schema.org/Movie">
<meta itemprop="url" content="/testet/{{ .data.LT.Slug.String }}" />
<meta itemprop="thumbnailUrl" content="{{ .data.LT.PosterS.String }}" />
<meta itemprop="thumbnailUrl" content="{{ .data.LT.ThumbS.String }}" />
<meta itemprop="datePublished" content="{{ .data.LT.Aired }}" />
<meta itemprop="timeRequired" content="{{ .data.LT.Duration.Int64 }}" />
<div class="flex-video widescreen vimeo">
<iframe width="213" height="120" src="//www.youtube.com/embed/{{ .data.LT.Youtube.String }}" frameborder="0" allowfullscreen></iframe>
</div>
<div class="medium-3 medium-push-9 columns">
<h5 itemprop="director" itemscope itemtype="http://schema.org/Person"><i class="fa fa-user fix-icon"></i> <a href="/zeige/{{ .data.AT.Slug.String }}/" itemprop="url"><span itemprop="name">{{ .data.AT.Name.String }}</span></a></h5>
2015-09-28 19:35:37 +00:00
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<meta itemprop="bestRating" content="10" />
<meta itemprop="worstRating" content="0" />
<h5><i class="fa fa-star fix-icon"></i> <span itemprop="ratingValue">{{ .data.LT.Rating.Float64 }}</span> von 10</h5>
<h5><i class="fa fa-users fix-icon"></i> <span itemprop="ratingCount">{{ .data.LT.Votes.Int64 }}</span> Stimmen</h5>
</div>
</div>
<div class="medium-9 medium-pull-3 columns">
2015-09-28 19:35:37 +00:00
<h1 id="ltName" itemprop="name">{{ .data.LT.Name.String }}</h1>
<p itemprop="description">{{ .data.DESC }}</p>
</div>
</div>
{{ template "footer.html" . }}