forked from opengaming/osgameclones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo.html
17 lines (14 loc) · 863 Bytes
/
video.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% macro render_youtube(youtube_id) -%}
<iframe src="https://www.youtube-nocookie.com/embed/{{ youtube_id }}?rel=0&showinfo=0"
width="560" height="315" frameborder="0" allowfullscreen></iframe>
{%- endmacro %}
{% macro render_vimeo(vimeo_id) -%}
<iframe src="https://player.vimeo.com/video/{{ vimeo_id }}?title=0&byline=0&portrait=0"
width="560" height="315" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
{%- endmacro %}
{%- macro render_moddb(moddb_id) -%}
<iframe width="560" height="315" src="https://www.moddb.com/media/iframe/{{ moddb_id }}" frameborder="0" allowfullscreen></iframe>
{%- endmacro %}
{%- macro render_indiedb(indiedb_id) -%}
<iframe width="560" height="315" src="https://www.indiedb.com/media/iframe/{{ indiedb_id }}" frameborder="0" allowfullscreen></iframe>
{%- endmacro %}