parent
50de72bea1
commit
46d0c07d5b
58
data.json
58
data.json
|
@ -62,16 +62,64 @@
|
|||
"subtitle": "L'Alsace se rebelle",
|
||||
"events": [
|
||||
{
|
||||
"description": "Macron hué à Muttersholtz et à Sélestat.",
|
||||
"media": []
|
||||
"description": "Emmanuel Macron hué lors de son déplacement à Muttersholtz et à Sélestat.",
|
||||
"media": [
|
||||
{
|
||||
"type": "video",
|
||||
"link": "https://videos.files.wordpress.com/1MHJzePX/whatsapp-video-2023-04-19-at-11.08.53.mp4",
|
||||
"source_url": "https://www.rue89strasbourg.com/emmanuel-macron-alsace-manifestant-hue-selestat-muttersholtz-263011",
|
||||
"source_text": "Malgré un important dispositif policier, Emmanuel Macron copieusement hué à Sélestat et Muttersholtz, Rue89 Strasbourg"
|
||||
},
|
||||
{
|
||||
"type": "video",
|
||||
"link": "https://www.rue89strasbourg.com/wp-content/uploads/2023/04/whatsapp-video-2023-04-19-at-13.33.52.mp4",
|
||||
"source_url": "https://www.rue89strasbourg.com/emmanuel-macron-alsace-manifestant-hue-selestat-muttersholtz-263011",
|
||||
"source_text": "Malgré un important dispositif policier, Emmanuel Macron copieusement hué à Sélestat et Muttersholtz, Rue89 Strasbourg"
|
||||
},
|
||||
{
|
||||
"type": "video",
|
||||
"link": "https://videos.files.wordpress.com/eGaRtUhb/whatsapp-video-2023-04-19-at-14.10.50.mp4",
|
||||
"source_url": "https://www.rue89strasbourg.com/emmanuel-macron-alsace-manifestant-hue-selestat-muttersholtz-263011",
|
||||
"source_text": "Malgré un important dispositif policier, Emmanuel Macron copieusement hué à Sélestat et Muttersholtz, Rue89 Strasbourg"
|
||||
},
|
||||
{
|
||||
"type": "video",
|
||||
"link": "https://videos.files.wordpress.com/yoZojnu8/whatsapp-video-2023-04-19-at-15.48.58.mp4",
|
||||
"source_url": "https://www.rue89strasbourg.com/emmanuel-macron-alsace-manifestant-hue-selestat-muttersholtz-263011",
|
||||
"source_text": "Malgré un important dispositif policier, Emmanuel Macron copieusement hué à Sélestat et Muttersholtz, Rue89 Strasbourg"
|
||||
},
|
||||
{
|
||||
"type": "link",
|
||||
"link": "https://www.rue89strasbourg.com/en-alsace-emmanuel-macron-prend-la-colere-en-pleine-figure-263234",
|
||||
"text": "En Alsace, Emmanuel Macron prend la colère en pleine figure, Rue89 Strasbourg"
|
||||
},
|
||||
{
|
||||
"type": "link",
|
||||
"link": "https://www.mediapart.fr/journal/politique/200423/en-alsace-emmanuel-macron-prend-la-colere-en-pleine-figure",
|
||||
"text": "En Alsace, Emmanuel Macron prend la colère en pleine figure, Mediapart"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Le député LFI Emmanuel Fernandes baîlloné par le 49§3 devant Macron.",
|
||||
"media": []
|
||||
"media": [
|
||||
{
|
||||
"type": "image",
|
||||
"link": "https://pbs.twimg.com/media/FuFRRhZXoAI1ge_?format=jpg",
|
||||
"source_url": "https://twitter.com/EmmanFernandes/status/1648688793258532866",
|
||||
"source_text": "Twitter, @Romain_Herreros"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "La nouvelle devise du pays selon Véran : « Travail, <s>Famille, Patrie</s> Ordre, Progrès",
|
||||
"media": []
|
||||
"description": "La nouvelle devise du pays selon Véran : « Travail, <s>Famille, Patrie</s> Ordre, Progrès »",
|
||||
"media": [
|
||||
{
|
||||
"type": "youtube",
|
||||
"code": "dGA6xV9pM9g",
|
||||
"start": "68"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -44,15 +44,21 @@
|
|||
<p>
|
||||
<a href="{{ medium.text }}">{{ medium.text }}</a>
|
||||
</p>
|
||||
{% elif medium.type == "youtube" %}
|
||||
{% elif medium.type == "image" %}
|
||||
<div class="text-center">
|
||||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/{{ medium.code }}?start={{ medium.start|default(0) }}" title="Allocution du président de la République du 17 avril 2023" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
<div>
|
||||
<img width="560" src="{{ medium.link }}">
|
||||
</div>
|
||||
<p>
|
||||
<i>Source : <a href="{{ medium.source_url }}">{{ medium.source_text }}</a></i>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{% elif medium.type == "video" %}
|
||||
<div class="text-center">
|
||||
<div>
|
||||
<video controls width="560" height="315">
|
||||
<source src="{{ medium.link }}{% if medium.start %}#t={{ medium.start }}{% if medium.end %},{{ medium.end }}{% endif %}{% endif %}">
|
||||
<source src="{{ medium.link }}{% if medium.start %}#t={{ medium.start }}{% if medium.end %},{{ medium.end }}{% endif %}{% endif %}" type="video/mp4">
|
||||
{% if medium.subtitles_file %}
|
||||
<track label="Français" kind="subtitles" srclang="fr" src="subtitles/{{ medium.subtitles_file }}" default>
|
||||
{% endif %}
|
||||
|
@ -62,6 +68,10 @@
|
|||
<i>Source : <a href="{{ medium.source_url }}">{{ medium.source_text }}</a></i>
|
||||
</p>
|
||||
</div>
|
||||
{% elif medium.type == "youtube" %}
|
||||
<div class="text-center">
|
||||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/{{ medium.code }}?start={{ medium.start|default(0) }}" title="Allocution du président de la République du 17 avril 2023" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in New Issue