webseite/templates/macros/projekt.html
maxbachmann 932e8584dd fix broken youtube button (#23)
* Update projekt.html

* Update blog.html
2019-05-17 09:48:17 +02:00

49 lines
2.4 KiB
HTML

{% macro render_blog_post(post, from_index=false) %}
{% if from_index %}
<section class="4u 6u(medium) 12u(xsmall) project">
<span class="icon alt major">
<a href="{{ post|url }}" class="project-creator" title="{%
if bag('translate', post.alt, 'projekt_title_start') %}{{ bag('translate', post.alt, 'projekt_title_start') }}{%
else %}{{ bag('translate', 'de', 'projekt_title_start') }}{%
endif %} {{ post.author }} {%
if bag('translate', post.alt, 'projekt_title_ende') %}{{ bag('translate', post.alt, 'projekt_title_ende') }}{%
else %}{{ bag('translate', 'de', 'projekt_title_ende') }}{%
endif %}">
<i class="{{ post.icon }} fa-3x iconshiftdown"></i></a>
</span>
<a href="{{ post|url }}"><h3>{{ post.title }}</h3></a>
<article class="teaser">
{{ post.teaser }}
</article>
</section>
{% else %}
<div id="main" class="wrapper style1">
<div class="container">
<header class="major">
<h2>{{ post.title }}</h2>
</header>
<section id="content">
{{ post.body }}
{% if post.video_is_embeded %}{% for blk in post.video_embeded.blocks %}
{% if blk.video_url %}
{{ blk }} <br/>
<a class="button" href="https://www.youtube.com/watch?v={{ blk.video_url }}{% if post.alt %}&gl={{ post.alt }}&hl={{ post.alt }}{% endif %}" target="_blank" rel="noopener">{%
if bag('translate', post.alt, 'directytlink') %}{{ bag('translate', post.alt, 'directytlink') }}{%
else %}Direkt zum YouTube-Video{% endif %}</a>{% endif %}{% if blk.video
%} <a class="button" href="{{ blk.video|url }}" download>{%
if bag('translate', post.alt, 'directlink') %}{{ bag('translate', post.alt, 'directlink') }}{%
else %}Download Video{% endif %}</a>{% endif %}
<br/><br/>
{% endfor %}{%
endif %}
{% if post.project %}
<div class="lightgallery" class="row alt">{%
for blk in post.project.blocks %}
{{ blk }}
{% endfor %}</div>{%
endif %}
</section>
</div>
</div>
{% endif %}
{% endmacro %}