diff --git a/README.md b/README.md index 34a56f9..ad97c73 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,25 @@ Hugo theme for ad5001.eu -## Licenses +## Licenses acknowledgments. -- static/font/metropolis/* is licensed under the SIL Open Font License, a copy being available in said folder. -- static/font/omegicons/\* fonts, static/icons/\*.svg, static/icons/platform/\* , static/icons/social/\* include custom icons as well as icons from [Iconmonstr](https://iconmonstr.com) under it's [permissive license](https://iconmonstr.com/license/) -- static/icons/flag/\* are flags from the [Wikimedia Commons](https://commons.wikimedia.org/wiki/Flag) under Public Domain. -- layouts/, assets/ aswell as static/js are under the [GNU AGPL v3](https://www.gnu.org/licenses/agpl-3.0.html), for which a copy is available in the LICENSE file. -- static/img/*, icon.svg are under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode) +- `static/font/metropolis/*` is licensed under the SIL Open Font License, a copy being available in said folder. +- `static/font/omegicons/\*` fonts, `static/icons/\*.svg`, `static/icons/platform/\*` , `static/icons/social/\*` include custom icons as well as icons from [Iconmonstr](https://iconmonstr.com) under it's [permissive license](https://iconmonstr.com/license/) +- `static/icons/flag/\*` are flags from the [Wikimedia Commons](https://commons.wikimedia.org/wiki/Flag) under Public Domain. +- `layouts/` and `assets/` are under the [GNU AGPL v3](https://www.gnu.org/licenses/agpl-3.0.html), for which a copy is available in the LICENSE file. +- `static/img/badges/\*` icons are owned by their respective owners, and are only used to represent product to which they refer: + - `amo.svg`, `amo-text.svg`: Firefox icon used to refer to [addons.mozilla.org]. + The Firefox logo is a trademark of the Mozilla Foundation in the U.S. and other countries. + This badge is the translated and updated form of [the old badge](https://blog.mozilla.org/addons/2015/11/10/promote-your-add-ons-with-the-get-the-add-on-button/) with the new AMO colors and branding. + - `snapcraft.svg`, `snapcraft-text.svg`: Snapcraft icon used to refer to [snapcraft.io]. + The Snapcraft logo is licensed under [CC BY-ND 2.0 UK](https://creativecommons.org/licenses/by-nd/2.0/uk/legalcode), a registered trademark of Canonical Limited, 2018. + These icons are adapted versions of [the official snapcraft badges](https://github.com/snapcore/snap-store-badges). + - `flathub.svg`, `flathub-text.svg`: Flathub icon used to refer to [flathub.org] + These icons are modified and translated versions of [the official flathub badges](https://flathub.org/badges), the official ones being under [CC0](http://creativecommons.org/publicdomain/zero/1.0/). +- `static/icons/distribution/\*` icons are owned by their respective owners, and are only used to represent product to which they refer: + - `firefox.svg`: Firefox icon used to refer to [addons.mozilla.org]. + The Firefox logo is a trademark of the Mozilla Foundation in the U.S. and other countries. + - `snapcraft.svg`: Snapcraft icon used to refer to [snapcraft.io]. + The Snapcraft logo is licensed under [CC BY-ND 2.0 UK](https://creativecommons.org/licenses/by-nd/2.0/uk/legalcode), a registered trademark of Canonical Limited, 2018. + - `flathub.svg`: Flathub icon used to refer to [flathub.org] +- `static/img/*`, `icon.svg` are under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode) diff --git a/assets/scss/apps.scss b/assets/scss/apps.scss index 6336b2e..b22e655 100644 --- a/assets/scss/apps.scss +++ b/assets/scss/apps.scss @@ -72,26 +72,16 @@ .app-os-sources { hr { - color: var(--primary-color); + border: 0; + height: 1px; + background: var(--primary-color); + &:last-of-type { opacity: 0; height: 0.1em; } } - - a img { - width: Min(300px, calc(100% - 2em)); - box-shadow: 0px 0px 0px 0px #000000; - transition: box-shadow 0.15s ease-in-out, filter 0.15s ease-in-out; - border-radius: 0.5em; - filter: brightness(100%); - - &:hover { - box-shadow: 0px 0px 8px 0px #000000; - filter: brightness(90%); - } - } } } diff --git a/assets/scss/blocks.scss b/assets/scss/blocks.scss index 2e29715..10e37f4 100644 --- a/assets/scss/blocks.scss +++ b/assets/scss/blocks.scss @@ -18,3 +18,4 @@ @import "components/blocks/preview"; @import "components/blocks/card"; +@import "components/blocks/badge"; diff --git a/assets/scss/common.scss b/assets/scss/common.scss index 361fda5..48cd825 100644 --- a/assets/scss/common.scss +++ b/assets/scss/common.scss @@ -40,6 +40,13 @@ body { max-width: 75em; } +.fit-content { + width: -moz-fit-content; + height: -moz-fit-content; + width: fit-content; + height: fit-content; +} + hr { opacity: 0.5; } diff --git a/assets/scss/components/blocks/badge.scss b/assets/scss/components/blocks/badge.scss new file mode 100644 index 0000000..6066b16 --- /dev/null +++ b/assets/scss/components/blocks/badge.scss @@ -0,0 +1,29 @@ +/** + * Omegamma - Hugo theme for ad5001.eu and related websites. + * Copyright (C) 2021 Ad5001 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +.badge { + width: Min(300px, calc(100% - 2em)); + box-shadow: 0px 0px 0px 0px #000000; + transition: box-shadow 0.15s ease-in-out, filter 0.15s ease-in-out; + border-radius: 0.5em; + filter: brightness(100%); + + &:hover { + box-shadow: 0px 0px 8px 0px #000000; + filter: brightness(90%); + } +} diff --git a/assets/scss/components/common/button.scss b/assets/scss/components/common/button.scss index 707379d..4d156ab 100644 --- a/assets/scss/components/common/button.scss +++ b/assets/scss/components/common/button.scss @@ -21,11 +21,13 @@ color: black; cursor: pointer; + width: -moz-fit-content; + height: -moz-fit-content; width: fit-content; height: fit-content; + &.primary, &.secondary { - padding: 0.5em; margin: 0.1em; text-transform: uppercase; font-size: larger; @@ -42,6 +44,13 @@ box-shadow: 0px 0px 8px 0px #000000; filter: brightness(90%); } + + & a, &:not(div) { + text-decoration: none; + display: inline-block; + color: black; + padding: 0.5em; + } } } diff --git a/assets/scss/components/common/icon.scss b/assets/scss/components/common/icon.scss index 8a28457..91c104b 100644 --- a/assets/scss/components/common/icon.scss +++ b/assets/scss/components/common/icon.scss @@ -61,6 +61,11 @@ } } */ + +.shadowed { + filter: drop-shadow(0 0 1px rgba(0, 0, 0, .6)); +} + [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "omegicons"; font-style: normal; @@ -87,7 +92,7 @@ -moz-osx-font-smoothing: grayscale; /* Uncomment for 3D effect */ - text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); + /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ } .icon-windows:before { content: '\e800'; } /* '' */ diff --git a/assets/scss/components/common/text.scss b/assets/scss/components/common/text.scss index 0751f12..beb5608 100644 --- a/assets/scss/components/common/text.scss +++ b/assets/scss/components/common/text.scss @@ -33,6 +33,13 @@ color: white; } -p, .text-content { +p, .text-content, ul { line-height: 1.5em; } + +code, .code { + font-family: monospace; + padding: 0.5em; + margin-bottom: 0.5em; + background: white; +} diff --git a/assets/scss/components/sections/skewed.scss b/assets/scss/components/sections/skewed.scss index 1574521..7fa8ca8 100644 --- a/assets/scss/components/sections/skewed.scss +++ b/assets/scss/components/sections/skewed.scss @@ -21,9 +21,8 @@ section.section-skewed { transform: skewY(var(--angle)); background: #D2D2D2; background: linear-gradient(170deg, rgba(238,238,238,1) 0%, rgba(210,210,210,1) 49%, rgba(238,238,238,1) 100%); - padding-top: 3em; + padding-top: 0.5em; padding-bottom: 3em; - margin-bottom: 2em; } section.section-skewed > * { diff --git a/assets/scss/header.scss b/assets/scss/header.scss index 94e18ef..9f60d09 100644 --- a/assets/scss/header.scss +++ b/assets/scss/header.scss @@ -66,6 +66,7 @@ nav { &.background a[role=button] { background-color: var(--nav-background); color: black; + display: inline; } a { diff --git a/i18n/en.json b/i18n/en.json index 2c0103c..0d8bd01 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -71,6 +71,12 @@ "storeFirefoxAddons": { "other": "Get it from the Firefox Addons" }, + "disclaimerSnapcraft": { + "other": "The Snapcraft logo is licensed under [CC BY-ND 2.0 UK](https://creativecommons.org/licenses/by-nd/2.0/uk/legalcode), a registered trademark of Canonical Limited, 2018." + }, + "disclaimerFirefox": { + "other": "The Firefox logo is a trademark of the Mozilla Foundation in the U.S. and other countries." + }, "websiteSource": { "other": "Website source code" }, diff --git a/i18n/fr.json b/i18n/fr.json index 618516b..d92f49f 100644 --- a/i18n/fr.json +++ b/i18n/fr.json @@ -71,6 +71,12 @@ "storeFirefoxAddons": { "other": "Installer depuis Firefox Addons" }, + "disclaimerSnapcraft": { + "other": "Le logo Snapcraft est sous licence [CC BY-ND 2.0 UK](https://creativecommons.org/licenses/by-nd/2.0/uk/legalcode), une marque déposée de Canonical Limited, 2018." + }, + "disclaimerFirefox": { + "other": "Le logo Firefox est une marque déposée de la Fondation Mozilla aux États-Unis et dans d'autres pays." + }, "websiteSource": { "other": "Code source du site" }, diff --git a/layouts/_default/app.html b/layouts/_default/app.html index dfd7062..cbfd110 100644 --- a/layouts/_default/app.html +++ b/layouts/_default/app.html @@ -3,6 +3,9 @@ {{ $appindex := .Params.SectionHeader.AppIndex }} {{ $data := index .Site.Data $lang }} {{ $appdata := index $data.apps $appindex }} +{{ $disclaimers := newScratch }} +{{ $disclaimers.Set "snapcraft" false }} +{{ $disclaimers.Set "firefox" false }} {{- partial "head.html" . -}} @@ -116,24 +119,26 @@

{{ .Title }}

{{ if hasPrefix .Title "Flatpak" }} - - {{ i18n - -

{{ i18n "warnExternalWebsite" "flathub.org" }} + + {{ partial "badge.html" (dict "Icon" "flathub" "Lang" $lang "Alt" "storeFlathub" ) }} + +

{{ i18n "warnExternalWebsite" "flathub.org" }} {{ else if hasPrefix .Title "Snap" }} - - {{ i18n - -

{{ i18n "warnExternalWebsite" "snapcraft.io" }} + {{ $disclaimers.Set "snapcraft" true }} + + {{ partial "badge.html" (dict "Icon" "snapcraft" "Lang" $lang "Alt" "storeSnapcraft" ) }} + +

{{ i18n "warnExternalWebsite" "snapcraft.io" }} {{ else if hasPrefix .Title "Firefox" }} - - {{ i18n - -

{{ i18n "warnExternalWebsite" "addons.mozilla.org" }} + {{ $disclaimers.Set "firefox" true }} + + {{ partial "badge.html" (dict "Icon" "amo" "Lang" $lang "Alt" "storeFirefoxAddons" ) }} + +

{{ i18n "warnExternalWebsite" "addons.mozilla.org" }} {{ else }} {{ i18n "file" }} {{ replace .Name "" $appdata.version }}
@@ -146,6 +151,13 @@ {{ end }}

{{ .Params.Download.Footnote | markdownify }}

+ + {{ if ($disclaimers.Get "snapcraft") }} +

{{ i18n "disclaimerSnapcraft" | markdownify }}

+ {{ end }} + {{ if ($disclaimers.Get "firefox") }} +

{{ i18n "disclaimerFirefox" | markdownify }}

+ {{ end }} {{ end }} diff --git a/layouts/_default/distribution-platforms.html b/layouts/_default/default.html similarity index 100% rename from layouts/_default/distribution-platforms.html rename to layouts/_default/default.html diff --git a/layouts/main-index.html b/layouts/main-index.html index ddb9660..93dc4e8 100644 --- a/layouts/main-index.html +++ b/layouts/main-index.html @@ -25,6 +25,7 @@
+

Software commitments

diff --git a/layouts/partials/badge.html b/layouts/partials/badge.html new file mode 100644 index 0000000..0c0907c --- /dev/null +++ b/layouts/partials/badge.html @@ -0,0 +1,2 @@ +{{ i18n .Alt }} + diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 26808d8..92bab7e 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -2,12 +2,13 @@ {{ .Site.Title }} - {{ .Title }} + - {{ $mainstyle := resources.Get "/scss/main.scss" | toCSS | minify | fingerprint }} + {{ $mainstyle := resources.Get "/scss/main.scss" | toCSS | minify }} {{ if .Site.Params.includeAppsStyle }} - {{ $appsstyle := resources.Get "/scss/apps.scss" | toCSS | minify | fingerprint }} + {{ $appsstyle := resources.Get "/scss/apps.scss" | toCSS | minify }} {{ end }} @@ -19,6 +20,6 @@ {{ end }} {{ end }} - {{ $mainjs := resources.Get "/js/main.js" | minify | fingerprint }} + {{ $mainjs := resources.Get "/js/main.js" | minify }} diff --git a/layouts/partials/header.html b/layouts/partials/header.html index ed63034..34f4f5d 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -54,8 +54,7 @@ {{ range .Translations }}
  • - - {{ .Language.LanguageName }} + {{ .Language.LanguageName }}
  • {{ end }} diff --git a/layouts/shortcodes/badge.html b/layouts/shortcodes/badge.html new file mode 100644 index 0000000..c75a805 --- /dev/null +++ b/layouts/shortcodes/badge.html @@ -0,0 +1 @@ +{{ partial "badge.html" (dict "Icon" (.Get 0) "Lang" (.Get 1) "Alt" (.Get 2) ) }} diff --git a/layouts/shortcodes/badgeTable.html b/layouts/shortcodes/badgeTable.html new file mode 100644 index 0000000..62f0ffb --- /dev/null +++ b/layouts/shortcodes/badgeTable.html @@ -0,0 +1,19 @@ +
    +
    +

    {{ i18n "en" }}

    + {{ partial "badge.html" (dict "Icon" (.Get 0) "Lang" "en" "Alt" (.Get 1) ) }} +
    +
    +
    <img source="https://ad5001.eu/img/badges/en/{{ .Get 0 }}.svg" class="badge"/>
    +
    +
    + +
    +

    {{ i18n "fr" }}

    + {{ partial "badge.html" (dict "Icon" (.Get 0) "Lang" "fr" "Alt" (.Get 1) ) }} +
    +
    +
    <img source="https://ad5001.eu/img/badges/fr/{{ .Get 0 }}.svg" class="badge"/>
    +
    +
    +
    diff --git a/layouts/shortcodes/section1.html b/layouts/shortcodes/section1.html new file mode 100644 index 0000000..97e3023 --- /dev/null +++ b/layouts/shortcodes/section1.html @@ -0,0 +1 @@ +{{ partial "section1.html" (dict "Image" (.Get 0) "Content" (.Inner | markdownify) ) }} diff --git a/layouts/shortcodes/sectionSkewed.html b/layouts/shortcodes/sectionSkewed.html new file mode 100644 index 0000000..9184da4 --- /dev/null +++ b/layouts/shortcodes/sectionSkewed.html @@ -0,0 +1,4 @@ + +
    + {{ .Inner | markdownify }} +
    diff --git a/static/css/badge.css b/static/css/badge.css new file mode 100644 index 0000000..2222d80 --- /dev/null +++ b/static/css/badge.css @@ -0,0 +1,29 @@ +/** + * Omegamma - Hugo theme for ad5001.eu and related websites. + * Copyright (C) 2021 Ad5001 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +.badge { + width: Min(300px, calc(100% - 2em)); + box-shadow: 0px 0px 0px 0px #000000; + transition: box-shadow 0.15s ease-in-out, filter 0.15s ease-in-out; + border-radius: 0.5em; + filter: brightness(100%); +} + +.badge::hover { + box-shadow: 0px 0px 8px 0px #000000; + filter: brightness(90%); +} diff --git a/static/icons/distribution/firefox.svg b/static/icons/distribution/firefox.svg new file mode 100644 index 0000000..21f8bc1 --- /dev/null +++ b/static/icons/distribution/firefox.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/distribution/flathub.svg b/static/icons/distribution/flathub.svg new file mode 100644 index 0000000..7250d02 --- /dev/null +++ b/static/icons/distribution/flathub.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/distribution/snapcraft.svg b/static/icons/distribution/snapcraft.svg new file mode 100644 index 0000000..35758b3 --- /dev/null +++ b/static/icons/distribution/snapcraft.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + diff --git a/static/img/badges/en/amo-text.svg b/static/img/badges/en/amo-text.svg new file mode 100644 index 0000000..e455d87 --- /dev/null +++ b/static/img/badges/en/amo-text.svg @@ -0,0 +1,984 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Get it from + Firefox Addons + + diff --git a/static/img/badges/en/amo.svg b/static/img/badges/en/amo.svg new file mode 100644 index 0000000..85af457 --- /dev/null +++ b/static/img/badges/en/amo.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/img/badges/en/export.sh b/static/img/badges/en/export.sh new file mode 100755 index 0000000..d9c57e1 --- /dev/null +++ b/static/img/badges/en/export.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# This script exports all fonts from svgs to path, and needs to be re-run every time the original file is modified. +# Programs required: inkscape, scour +# Fonts required: Ubuntu, Sharp Sans, Source Sans Pro +for file in *-text.svg; do + basename="${file%-*}" + rm $basename.svg + inkscape $basename-text.svg --export-filename=$basename-s.svg --export-text-to-path + scour -i $basename-s.svg -o $basename.svg + rm $basename-s.svg +done diff --git a/static/img/badges/en/flathub-text.svg b/static/img/badges/en/flathub-text.svg new file mode 100644 index 0000000..ec18dac --- /dev/null +++ b/static/img/badges/en/flathub-text.svg @@ -0,0 +1,240 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Download On + + diff --git a/static/img/badges/en/flathub.svg b/static/img/badges/en/flathub.svg new file mode 100644 index 0000000..60f8fe3 --- /dev/null +++ b/static/img/badges/en/flathub.svg @@ -0,0 +1,58 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/img/badges/en/snapcraft-text.svg b/static/img/badges/en/snapcraft-text.svg new file mode 100644 index 0000000..482911c --- /dev/null +++ b/static/img/badges/en/snapcraft-text.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + +[EN]-snap-store-black +Created with Sketch. +Get it from theSnap Store +[EN]-snap-store-black diff --git a/static/img/badges/en/snapcraft.svg b/static/img/badges/en/snapcraft.svg new file mode 100644 index 0000000..310421d --- /dev/null +++ b/static/img/badges/en/snapcraft.svg @@ -0,0 +1,19 @@ + + + + +[EN]-snap-store-black +Created with Sketch. + +[EN]-snap-store-black diff --git a/static/img/badges/fr/amo-text.svg b/static/img/badges/fr/amo-text.svg new file mode 100644 index 0000000..9087abb --- /dev/null +++ b/static/img/badges/fr/amo-text.svg @@ -0,0 +1,984 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Installer depuis + Firefox Addons + + diff --git a/static/img/badges/fr/amo.svg b/static/img/badges/fr/amo.svg new file mode 100644 index 0000000..e251f8a --- /dev/null +++ b/static/img/badges/fr/amo.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/img/badges/fr/export.sh b/static/img/badges/fr/export.sh new file mode 100755 index 0000000..d9c57e1 --- /dev/null +++ b/static/img/badges/fr/export.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# This script exports all fonts from svgs to path, and needs to be re-run every time the original file is modified. +# Programs required: inkscape, scour +# Fonts required: Ubuntu, Sharp Sans, Source Sans Pro +for file in *-text.svg; do + basename="${file%-*}" + rm $basename.svg + inkscape $basename-text.svg --export-filename=$basename-s.svg --export-text-to-path + scour -i $basename-s.svg -o $basename.svg + rm $basename-s.svg +done diff --git a/static/img/badges/fr/flathub-text.svg b/static/img/badges/fr/flathub-text.svg new file mode 100644 index 0000000..2c5e4db --- /dev/null +++ b/static/img/badges/fr/flathub-text.svg @@ -0,0 +1,240 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Installer depuis + + diff --git a/static/img/badges/fr/flathub.svg b/static/img/badges/fr/flathub.svg new file mode 100644 index 0000000..554d885 --- /dev/null +++ b/static/img/badges/fr/flathub.svg @@ -0,0 +1,63 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/img/badges/fr/snapcraft-text.svg b/static/img/badges/fr/snapcraft-text.svg new file mode 100644 index 0000000..7a4cfe9 --- /dev/null +++ b/static/img/badges/fr/snapcraft-text.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + +[EN]-snap-store-black +Created with Sketch. +Installer à partir duSnap Store +[EN]-snap-store-black diff --git a/static/img/badges/fr/snapcraft.svg b/static/img/badges/fr/snapcraft.svg new file mode 100644 index 0000000..3c7383c --- /dev/null +++ b/static/img/badges/fr/snapcraft.svg @@ -0,0 +1,19 @@ + + + + +[EN]-snap-store-black +Created with Sketch. + +[EN]-snap-store-black