Import of the new theme
This commit is contained in:
parent
04104f0bff
commit
0693a85c3f
331 changed files with 21077 additions and 8782 deletions
38
_layouts/video.html
Normal file
38
_layouts/video.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
layout: default
|
||||
format: video
|
||||
---
|
||||
<div class="row">
|
||||
<div class="small-12 columns">
|
||||
<article itemprop="video" itemscope itemtype="http://schema.org/VideoObject">
|
||||
<div class="flex-video">
|
||||
{{ page.iframe}}
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="medium-offset-2 medium-8 end columns">
|
||||
<header>
|
||||
{% if page.subheadline %}<p class="subheadline t30">{{ page.subheadline }}</p>{% endif %}
|
||||
<h1 itemprop="name">{{ page.title }}</h1>
|
||||
</header>
|
||||
|
||||
{% if page.video.thumbnailUrl %}<meta itemprop="thumbnailUrl" content="{{ page.video.thumbnailUrl }}" />{% endif %}
|
||||
{% if page.video.contentURL %}<meta itemprop="contentURL" content="{{ page.video.contentURL }}" />{% endif %}
|
||||
{% if page.video.embedURL %}<meta itemprop="embedURL" content="{{ page.video.embedURL }}" />{% endif %}
|
||||
|
||||
{% if page.teaser %}
|
||||
<p class="teaser" itemprop="description">
|
||||
{{ page.teaser }}
|
||||
</p>
|
||||
{% endif %}
|
||||
|
||||
{{ content }}
|
||||
{% if page.show_meta == true %}
|
||||
{% include meta_information.html %}
|
||||
{% endif %}
|
||||
</div><!-- /.medium-8.columns -->
|
||||
</div><!-- /.row -->
|
||||
</article>
|
||||
|
||||
</div><!-- /.small-12.columns -->
|
||||
</div><!-- /.row -->
|
Reference in a new issue