Being new to TYPO3 fluid I was wondering if there's an easy way to create a link to a PDF-file which is located in the filelist as you would in simple html as follows:
<a href="filePathOnServer/file.pdf">Click here to open pdf (in a new window)</a>
I couldn't find a solution so far that wouldn't require an extension or that wouldn't render the pdf direclty on the page (<flux:field.inline.fal name="settings.image" required="1" maxItems="1" minItems="1"/>
)
Should/Can this be done with <f:link.external href="filePathOnServer/file.pdf">
? (I've got another problem at the moment preventing me from checking if this works...)
EDIT
I've tried using <f:link.external>
which didn't work. For the time being I'm using the (non-fluid) <a>-tag
...