You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
webtv/video_accueil.html

29 lines
1.2 KiB
HTML

[(#REM) Lecteur pour la page d'accueil (avec liste des articles récents).]
<section id="lecteur">
<BOUCLE_article(ARTICLES){0,1}{doublons}>
<video id="video" controls="controls" preload="auto">
<BOUCLE_morceau(DOCUMENTS){id_article}{mode=document}>
[<source src="(#URL_DOCUMENT|url_absolue|unique)" [type="(#MIME_TYPE)"]/>]
</BOUCLE_morceau>
<BOUCLE_morceau_flash(DOCUMENTS){id_article}{extension==mp4|flv}{mode=document}{0,1}>
<object type="application/x-shockwave-flash"
data="#CHEMIN{player.swf}?file=[(#URL_DOCUMENT|url_absolue)]" width="#LARGEUR" height="#HAUTEUR">
<param name="movie" value="#CHEMIN{player.swf}?file=[(#URL_DOCUMENT|url_absolue)]" />
</object>
</BOUCLE_morceau_flash>
</video>
</BOUCLE_article>
<B_articles_video_tous>
<ul class="gallery" id="liste_video">
<BOUCLE_articles_video_tous(ARTICLES){exclus}{!par date}{titre!==^_}{0,5}{doublons}>
<li><div class="txtvideolist" style="width:150px;background-color:#EAEAEA;height:75px;"><a href="#URL_SITE_SPIP/#URL_ARTICLE">[(#LOGO_ARTICLE_RUBRIQUE||image_reduire{75})]</a><p class="titrevideolist"><a href="#URL_SITE_SPIP/#URL_ARTICLE">[(#DATE|affdate{'d.m.y'})] - <b>#TITRE</b></a></p></div></li>
</BOUCLE_articles_video_tous>
</ul>
</B_articles_video_tous>
</section>