From e412060eaedd4c9e7dc15fcb67a972d8009f0399 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Thu, 29 Feb 2024 10:16:02 +0100 Subject: [PATCH 1/3] Fix typo Closes: https://framagit.org/happyDomain/help/-/issues/1 --- content/_index.en.md | 2 +- content/_index.fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/_index.en.md b/content/_index.en.md index a85af8c..71ebd72 100644 --- a/content/_index.en.md +++ b/content/_index.en.md @@ -9,7 +9,7 @@ aliases: --- happyDomain is an interface that makes domain names accessible and reduces the usual friction points. -Our interface centralizes your domains and includes all the features you'd expect in the 2024 century for effortless domain management. +Our interface centralizes your domains and includes all the features you'd expect in 2024 for effortless domain management. We built happyDomain because we want to save operational teams time by giving them superpowers: to have all the power of domain names, without having to read and learn all the new standards, by staying focused on needs. diff --git a/content/_index.fr.md b/content/_index.fr.md index 556394c..bf2a8d9 100644 --- a/content/_index.fr.md +++ b/content/_index.fr.md @@ -9,7 +9,7 @@ aliases: --- happyDomain est une interface qui rend accessibles les noms de domaines et réduit les points de friction habituels. -Notre interface centralise vos domaines et inclut toutes les fonctionnalités que l'on attendrait en 2024 siècle pour gérer ses domaines sans peine. +Notre interface centralise vos domaines et inclut toutes les fonctionnalités que l'on attendrait en 2024 pour gérer ses domaines sans peine. Nous avons construit happyDomain parce que nous voulons faire gagner du temps aux équipes opérationnelles en leur donnant des superpouvoirs : avoir toute la puissances des noms de domaines, sans devoir lire et apprendre toutes les nouvelles normes, en restant focalisé sur les besoins. From 519ae7e74956cc6a783c478ac61910b38df441b4 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Thu, 29 Feb 2024 10:16:28 +0100 Subject: [PATCH 2/3] Update source code link to the most recent group --- content/_index.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/_index.en.md b/content/_index.en.md index 71ebd72..856ef98 100644 --- a/content/_index.en.md +++ b/content/_index.en.md @@ -28,7 +28,7 @@ Here's an overview of happyDomain's main features: - automate tasks via a REST API. We are a free and open source project: you can use the official interface available at [`www.happydomain.org`](https://www.happydomain.org/), or install it at home. -The source code is available on [framagit](https://framagit.org/happyDNS/): you can consult it, copy it, give your opinion, report bugs or make modifications, as you wish. +The source code is available on [framagit](https://framagit.org/happyDomain/): you can consult it, copy it, give your opinion, report bugs or make modifications, as you wish. ![The happyDomain home page: see all your domain status](https://www.happydomain.org/img/screenshots/domains-list.webp) From 9b26a5a294b2ded3064c9662ce397113b6278526 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Thu, 29 Feb 2024 10:22:28 +0100 Subject: [PATCH 3/3] Update gitlab-ci to include 404 page + refactor --- .gitlab-ci.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7c18e23..78114cd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,17 +3,20 @@ # image: registry.gitlab.com/pages/hugo/hugo:latest +variables: + GIT_SUBMODULE_STRATEGY: recursive + stages: - build -before_script: - - git submodule init - - git submodule update - pages: stage: build script: - hugo + - cp public/en/404.html public/404.html artifacts: paths: - public + rules: + - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + environment: production