Skip to content

Latest commit

 

History

History
55 lines (52 loc) · 1.8 KB

File metadata and controls

55 lines (52 loc) · 1.8 KB
title Video
permalink /videos/
layout papers
description DeepPhe introductory video presentation.

{% assign videos = site.data.videos %}

{% if videos.size == 1 %} {% assign v = videos.first %}

{{ v.title }}

{% if v.event %}

{{ v.event }}

{% else %}

{{ v.venue }} · {{ v.year }}

{% endif %} {% if v.description and v.description != "" %}

{{ v.description }}

{% endif %}
<iframe src="https://www.youtube-nocookie.com/embed/{{ v.youtube_id }}" title="{{ v.title | escape }}" loading="lazy" allowfullscreen allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"></iframe>
{% else %}

Videos

{% for v in videos %}

{{ v.title }}

{% if v.event %}

{{ v.event }}

{% else %}

{{ v.venue }} · {{ v.year }}

{% endif %} {% if v.description and v.description != "" %}

{{ v.description }}

{% endif %}
<iframe src="https://www.youtube-nocookie.com/embed/{{ v.youtube_id }}" title="{{ v.title | escape }}" loading="lazy" allowfullscreen allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"></iframe>
{% endfor %}
{% endif %}