Wiki source code of Conditioning
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{velocity}} | ||
2 | #set ($attachmentName = "Propaganda.mp4") | ||
3 | #set ($attachmentURL = "$doc.getAttachmentURL($attachmentName, 'download')") | ||
4 | |||
5 | #if ($attachmentURL) | ||
6 | <video width="640" height="360" controls> | ||
7 | <source src="$attachmentURL" type="video/mp4"> | ||
8 | Your browser does not support the video tag. | ||
9 | </video> | ||
10 | #else | ||
11 | <p>Error: Could not find attachment '$attachmentName'. Please ensure it exists and the filename is correct.</p> | ||
12 | #end | ||
13 | {{/velocity}} |