My Hugo site is built for three languages.
I have a file that I want users to download dependent of language they chose. If they choose English then file should be able to download in English. If they choose German than file should be able to download on German.
Here is my button to download file
<div class="button_cont">
<a class="example_d" href="/docs/travel_en.pdf">
{{ i18n "CTAbutton"}}</a>
</div>
This is English version of file.
And my .pdf file is placed in static/docs
This works fine. File is downloadable, but how can I make that click on this same button downloads the file depending on selected language?
For example if German:
<div class="button_cont">
<a class="example_d" href="/docs/travel_ge.pdf">
{{ i18n "CTAbutton"}}</a>
</div>
Any tips highly appreciated