GoGronkh/gserver/templates/lt.html

41 lines
2.5 KiB
HTML

{{ template "header.html" . }}
<div class="row" itemscope itemtype="http://schema.org/Movie">
<meta itemprop="url" content="https://gronkh.1750studios.com/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>
<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">
<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 itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="url" href="/testet"><span itemprop="name">Let's Tests</span></a>
<meta itemprop="position" content="2" />
</li>
<li class="current" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="url" href="/testet/{{ .data.LT.Slug.String }}"><span itemprop="name">{{ .data.LT.Name.String }}</span></a>
<meta itemprop="position" content="3" />
</li>
<meta itemprop="numberOfItems" content="3" />
</ul>
<h1 id="ltName" itemprop="name">{{ .data.LT.Name.String }}</h1>
<p itemprop="description">{{ .data.DESC }}</p>
</div>
</div>
{{ template "footer.html" . }}