diff --git a/i18n/en.json b/i18n/en.json index 8c0965d..f9e4804 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -15,7 +15,7 @@ "other": "Technical sheet" }, "downloadApp": { - "other": "{{ .Name }} is available on {{ .Platforms }}." + "other": "{{ .Name }} v{{ .Version }} is available on {{ .Platforms }}." }, "warnExternalWebsite": { "other": "(external link to {{ . }})" diff --git a/i18n/fr.json b/i18n/fr.json index 089ec1d..4bcd511 100644 --- a/i18n/fr.json +++ b/i18n/fr.json @@ -15,7 +15,7 @@ "other": "Fiche technique" }, "downloadApp": { - "other": "{{ .Name }} est disponible sur {{ .Platforms }}." + "other": "{{ .Name }} v{{ .Version }} est disponible sur {{ .Platforms }}." }, "warnExternalWebsite": { "other": "(lien externe vers {{ . }})" diff --git a/layouts/_default/app.html b/layouts/_default/app.html index 9379907..3a2658b 100644 --- a/layouts/_default/app.html +++ b/layouts/_default/app.html @@ -104,7 +104,7 @@

{{ i18n "download" }}

- {{ i18n "downloadApp" (dict "Name" .Name "Platforms" (delimit $AppData.platforms ", ")) }} + {{ i18n "downloadApp" (dict "Name" .Name "Version" $AppData.version "Platforms" (delimit $AppData.platforms ", ")) }}

diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 14d909d..3257ef4 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -16,7 +16,7 @@ {{ end }} {{ $printstyle := resources.Get "/scss/print.scss" | toCSS | minify }} - + {{ hugo.Generator }} diff --git a/layouts/shortcodes/badgeTable.html b/layouts/shortcodes/badgeTable.html index 4ff6574..ca21c8e 100644 --- a/layouts/shortcodes/badgeTable.html +++ b/layouts/shortcodes/badgeTable.html @@ -9,7 +9,7 @@ {{ partial "badge.html" (dict "Icon" $icon "Lang" . "Alt" $alt ) }}
-
<img source="https://ad5001.eu/img/badges/{{ . }}/{{ $icon }}.svg" class="badge"/>
+
<img source="https://ad5001.eu/img/badges/{{ . }}/{{ $icon }}.svg" alt="{{ i18n $alt }}" class="badge"/>
{{ end }} diff --git a/static/img/logo.png b/static/img/logo.png new file mode 100644 index 0000000..3029285 Binary files /dev/null and b/static/img/logo.png differ