You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
513 B
21 lines
513 B
6 years ago
|
{% extends "fr/base.html" %}
|
||
|
{% block title %}{% endblock %}
|
||
|
|
||
|
{% block search %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block manifesto %}
|
||
|
<div id="manifesto_content_wrapper">
|
||
|
{% if '.jpg' in link %}
|
||
|
<img src="{{ link }}" />
|
||
|
{% elif 'vimeo' in link %}
|
||
|
<iframe src="{{ link }}" width="600" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
|
||
|
{% else %}
|
||
|
<iframe id="manifesto_content" src="{{ link }}"></iframe>
|
||
|
{% endif%}
|
||
|
</div>
|
||
|
{% endblock %}
|