GoGronkh/gserver/templates/lt.html

44 lines
2.7 KiB
HTML
Raw Normal View History

{{ template "header.html" . }}
<div class="row" itemscope itemtype="http://schema.org/Movie">
<meta property="og:type" content="video" />
<meta property="og:title" content="{{ .data.LT.Name.String }}" />
<meta property="og:description" content="{{ .data.LT.Descr.String }}" />
<meta property="og:url" itemprop="url" content="https://gronkh.1750studios.com/testet/{{ .data.LT.Slug.String }}" />
<meta itemprop="thumbnailUrl" content="{{ .data.LT.PosterS.String }}" />
<meta property="og:image" itemprop="thumbnailUrl" content="{{ .data.LT.ThumbS.String }}" />
<meta property="og:updated_time" 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-10-01 17:02:47 +00:00
<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>
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" . }}