Add features grid

This commit is contained in:
nemunaire 2021-01-12 10:49:17 +01:00
parent 9cebb75cfb
commit e9a8cf183e
4 changed files with 122 additions and 0 deletions

90
data/features.toml Normal file
View File

@ -0,0 +1,90 @@
[[features]]
id = "dynamicDNS"
[features.title]
fr = "Gérer les zones de vos serveurs BIND, Knot, PowerDNS, ..."
en = "Manage your zones backed by BIND, Knot, PowerDNS, ..."
[features.content]
fr = "happyDomain peut s'utiliser comme interface au dessus d'un serveur faisant autorité. Il utilise pour cela le Dynamic DNS (RFC 2136), implémenté dans de nombreux logiciels serveurs."
en = "happyDomain can be used as an interface above an authoritative name server. It uses the Dynamic DNS (RFC 2136), implemented in many server software."
[features.link]
link = "https://help.happydns.org/fr/deploy/"
fr = "Montrez-moi comment m'y connecter!"
en = "Show me how to connect!"
[[features]]
id = "registrar"
[features.title]
fr = "Gérer les zones hébergées chez des prestataires d'hébergement"
en = "Manage your zones hosted on hosting providers"
[features.content]
fr = "happyDomain peut regrouper les domaines que vous possédez dans différents bureaux d'enregistrement. Nous supportons aujourd'hui OVH, GoDaddy, Gandi et Alwaysdata."
en = "happyDomain can group the domains you own in different registrars. We currently support OVH, GoDaddy, Gandi and Alwaysdata."
[features.link]
link = "https://framaforms.org/une-minute-pour-nous-dire-ou-aller-1610359677"
fr = "Vous utilisez un autre bureau d'enregistrement?"
en = "Are you using another registrar?"
[[features]]
id = "rest"
[features.title]
fr = "Utiliser happyDomain comme API REST"
en = "Use happyDomain as a API REST"
[features.content]
fr = "happyDomain expose une API REST que vous pouvez utiliser pour automatiser des tâches de création de sous-domaine à la volée, par exemple dans votre système de déploiement continu."
en = "happyDomain exposes a REST API that you can use to automate sub-domain creation tasks on the fly, for example in your continuous deployment system."
[features.link]
link = "https://help.happydns.org/fr/use-case/ci-cd/"
fr = "Montrez-moi un exemple!"
en = "Show me an example!"
[[features]]
id = "resolver"
[features.title]
fr = "Tester ou déboguer votre zone en ligne"
en = "Test or debug your zone online"
[features.content]
fr = "happyDomain intégre un résolveur DNS simple d'utilisation, qui vous permet de vous connecter sans effort à une cinquantaine de résolveurs publics. Vous pouvez facilement voir la propagation de vos modifications."
en = "happyDomain integrates an easy-to-use DNS resolver, which allows you to effortlessly connect to about 50 public resolvers. You can easily see the propagation of your changes."
[features.link]
link = "https://www.happydns.org/tools/client/"
fr = "Je veux tester ça de suite!"
en = "I want to test this now!"
[[features]]
id = "diff"
[features.title]
fr = "Visualiser clairement les changements"
en = "Clearly visualize changes"
[features.content]
fr = "Avant de publier vos modifications, happyDomain vous montre quels seront exactement les changements (ajouts et suppressions) qui seront effectués sur la zone. C'est le bon moment pour se relire."
en = "Before publishing your changes, happyDomain shows you exactly what changes (additions and deletions) will be made to the area. This is a good time to reread."
[[features]]
id = "history"
[features.title]
fr = "Garder une trace des modifications"
en = "Keeping track of changes"
[features.content]
fr = "happyDomain ne se contente pas de vous montrer votre zone telle qu'elle est publiée. Chaque modification est enregistrée afin de garder un historique de vos changements. En cas de problème, revenez à une version précédente en 2 clics."
en = "happyDomain doesn't just show you your zone as it is published. Every modification is saved to keep a history of your changes. In case of problem, go back to a previous version in 2 clicks."

View File

@ -35,6 +35,9 @@
translation: |
Recognized **experts:** change your point of view on DNS, with an **ergonomic** interface in the age of time that will meet all your expectations.
- id: features-grid-title
translation: What can happyDomain do for you today?
- id: downloads-title
translation: |
Downloads

View File

@ -35,6 +35,9 @@
translation: |
**Experts** chevronnés : changez votre point de vue sur le DNS, avec une interface **ergonomique** dans lair du temps, qui répondra à toutes vos attentes.
- id: features-grid-title
translation: Que peut faire happyDomain pour vous aujourd'hui?
- id: downloads-title
translation: |
Téléchargements

View File

@ -35,4 +35,30 @@
</p>
</div>
</div>
<div id="features-grid" class="mt-3">
<h3 class="text-center font-weight-bolder mt-5 mb-5" style="line-height: 1.5em;">
{{ i18n "features-grid-title" }}
</h3>
</div>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3">
{{ range $.Site.Data.features.features }}
{{ if index .title $.Language.Lang }}
<div class="col mb-4">
<div class="card" id="feature-{{ .id }}">
<div class="card-body">
<h5 class="card-title text-center mb-0">{{ index .title $.Language.Lang }}</h5>
<hr class="mb-1 mt-2 mr-4 ml-4">
<p class="card-text text-justify">{{ index .content $.Language.Lang }}</p>
{{ if and .link .link.link }}
<a href="{{ .link.link }}" class="card-link">{{ index .link $.Language.Lang }}</a>
{{ end }}
</div>
</div>
</div>
{{ end }}
{{ end }}
</div>
</div>