21 lines
513 B
HTML
21 lines
513 B
HTML
|
{% 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 %}
|