Files
chill_hugoplate/layouts/shortcodes/pdf-download-link.html

6 lines
315 B
HTML

{{ $path := .Get "path" | default "pdf/grille-tarifaire.pdf" }}
{{ $text := .Get "text" | default "Telecharger le PDF" }}
{{ $class := .Get "class" | default "" }}
{{ $filename := path.Base $path }}
<a href="{{ $path | relURL }}"{{ with $class }} class="{{ . }}"{{ end }} download="{{ $filename }}">{{ $text }}</a>