relative or remote URL
#FICHIER returns the relative URL of the document.
Example
<B_video>
<video class='video'>
<BOUCLE_video(DOCUMENTS){id_rubrique}{extension IN mp4,webm}>
<source src='#FICHIER' type='#MIME_TYPE'>
</BOUCLE_video>
</video>
</B_video>
...will produce the following HTML code:
<video class="video">
<source src="IMG/mp4/youpi.mp4" type="application/mp4">
<source src="IMG/webm/youpi.webm" type="video/webm">
</video>
For a remote document, #FICHIER
displays the full URL to the document.
Example : http://www.other_site.com/rep/document.ext
|basename
filter
To extract the file name only, use the filter: |basename
:
[(#FICHIER|basename)]
will return the html code my_document.pdf
.
Displaying an image
An interesting usage of this tag is obtained by combining it with the |image_reduire
filter to display thumbnail images rather than logos; for example
<BOUCLE_image(DOCUMENTS){id_document}>
[(#FICHIER|image_reduire{500})]
</BOUCLE_image>
…will produce the following HTML code:
<img src="local/cache-vignettes/L500xH358/mon_image-0b0cd.jpg?1535709838" width="500" height="358">