diff --git a/content/pricing.md b/content/pricing.md index 1251d5a..26de91e 100644 --- a/content/pricing.md +++ b/content/pricing.md @@ -59,7 +59,7 @@ layout: "simple" "featured": true, "features": [ "Tous les avantages du pack initial *", - "1 journée de paramétrage supplémentaire" + "+1 journée de paramétrage supplémentaire" ], "additional_description": "* A partir du 4ème utilisateur: 40€ supplémentaire/an.", "button": { @@ -108,7 +108,7 @@ layout: "simple"

Tous les prix exprimés dans ce tableau sont indiqués HTVA.

- Télécharger la grille tarifaire détaillée + {{< pdf-download-link path="pdf/grille-tarifaire.pdf" text="Télécharger la grille tarifaire détaillée" class="text-primary-500 underline font-semibold block mb-4" >}}
diff --git a/layouts/shortcodes/pdf-download-link.html b/layouts/shortcodes/pdf-download-link.html new file mode 100644 index 0000000..eacecfc --- /dev/null +++ b/layouts/shortcodes/pdf-download-link.html @@ -0,0 +1,6 @@ +{{ $path := .Get "path" | default "pdf/grille-tarifaire.pdf" }} +{{ $text := .Get "text" | default "Telecharger le PDF" }} +{{ $class := .Get "class" | default "" }} +{{ $filename := path.Base $path }} + +{{ $text }} \ No newline at end of file diff --git a/static/pdf/grille-tarifaire.pdf b/static/pdf/grille-tarifaire.pdf new file mode 100644 index 0000000..0cf697b Binary files /dev/null and b/static/pdf/grille-tarifaire.pdf differ