From 148992eaef5501bbfbc7f3469c4dc03715112a75 Mon Sep 17 00:00:00 2001 From: maxime_senza Date: Wed, 27 May 2020 11:17:44 +0200 Subject: [PATCH 01/15] feature: about sib | HTML of page + header link + include + sib router --- src/header.pug | 3 +++ src/index.pug | 5 ++++- src/menu-left.pug | 1 + src/page-about.pug | 16 ++++++++++++++++ 4 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 src/page-about.pug diff --git a/src/header.pug b/src/header.pug index 55d35a8..b47c11c 100644 --- a/src/header.pug +++ b/src/header.pug @@ -29,9 +29,12 @@ details#user-controls.notLoggedIn sib-link(next='my-profile') Mon profil //-li sib-link(next='user-settings') Settings + li sib-link(next='admin') Administration button(role='log out' onclick="document.querySelector('sib-auth').logout();") Se déconnecter + li + sib-link(next='about') A propos button.loggedIn(role='log in' onclick="document.querySelector('sib-auth').login();") Se connecter diff --git a/src/index.pug b/src/index.pug index 5ae77e6..19d3aae 100644 --- a/src/index.pug +++ b/src/index.pug @@ -17,9 +17,12 @@ html(lang="en") header#header(role='banner') include header.pug + main.notLoggedIn include menu-left.pug + include page-about.pug div#viewport + if endpoints.dashboards || (endpoints.get && endpoints.get.dashboards) #dashboard(hidden).no-sidebar @@ -59,4 +62,4 @@ html(lang="en") type=`${provider.type}` url=`${provider.url}` id=`${provider.id}` - ) \ No newline at end of file + ) diff --git a/src/menu-left.pug b/src/menu-left.pug index 3c82383..35c0430 100644 --- a/src/menu-left.pug +++ b/src/menu-left.pug @@ -54,6 +54,7 @@ nav#main__menu.jsLeftMenu div.menu-label Tableau de bord div.menu-icon.icon-home div.divider + sib-route(name='about', hidden) if publicDirectory && (endpoints.users || (endpoints.get && endpoints.get.users)) sib-route.menu(name='members') div.menu-label Annuaire des membres diff --git a/src/page-about.pug b/src/page-about.pug new file mode 100644 index 0000000..064da90 --- /dev/null +++ b/src/page-about.pug @@ -0,0 +1,16 @@ +#about + .views-container + h2 A propos + div + h3 Cette application est développé par Startin'blox + p Ici un paragraphe qui explique ce qu'est SIB + + + a https://startinblox.com/fr + + div + h3 Contacte-nous + p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? + + div + p Contact \ No newline at end of file From 4148b8c6f0f521bb45c82377394c697115ae221c Mon Sep 17 00:00:00 2001 From: maxime_senza Date: Wed, 27 May 2020 15:07:30 +0200 Subject: [PATCH 02/15] feature: about page | change spot in header --- src/header.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header.pug b/src/header.pug index b47c11c..7cc5191 100644 --- a/src/header.pug +++ b/src/header.pug @@ -32,9 +32,9 @@ details#user-controls.notLoggedIn li sib-link(next='admin') Administration - button(role='log out' onclick="document.querySelector('sib-auth').logout();") Se déconnecter li sib-link(next='about') A propos + button(role='log out' onclick="document.querySelector('sib-auth').logout();") Se déconnecter button.loggedIn(role='log in' onclick="document.querySelector('sib-auth').login();") Se connecter From 6ea07c6bc04bd0561736dfee2f0f2757ad923689 Mon Sep 17 00:00:00 2001 From: maxime_senza Date: Thu, 28 May 2020 23:05:34 +0200 Subject: [PATCH 03/15] feature: classes for about page --- src/page-about.pug | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/page-about.pug b/src/page-about.pug index 064da90..ca8b2b3 100644 --- a/src/page-about.pug +++ b/src/page-about.pug @@ -1,16 +1,17 @@ -#about +#about.no-sidebar .views-container h2 A propos - div - h3 Cette application est développé par Startin'blox - p Ici un paragraphe qui explique ce qu'est SIB + div.flex-content-white + div + h3 Cette application est développé par Startin'blox + p Ici un paragraphe qui explique ce qu'est SIB - a https://startinblox.com/fr - - div - h3 Contacte-nous - p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? + a https://startinblox.com/fr div - p Contact \ No newline at end of file + h3 Contacte-nous + p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? + + div + p Contact \ No newline at end of file From 5ce5f5523bb30f637dffc04a0fe09621e0660a7b Mon Sep 17 00:00:00 2001 From: maxime_senza Date: Thu, 28 May 2020 23:16:23 +0200 Subject: [PATCH 04/15] add css files for about page --- src/styles/base/about.scss | 7 +++++++ src/styles/index.scss | 1 + 2 files changed, 8 insertions(+) create mode 100644 src/styles/base/about.scss diff --git a/src/styles/base/about.scss b/src/styles/base/about.scss new file mode 100644 index 0000000..902332e --- /dev/null +++ b/src/styles/base/about.scss @@ -0,0 +1,7 @@ +#about{ + .flex-content-white{ + div{ + + } + } +} \ No newline at end of file diff --git a/src/styles/index.scss b/src/styles/index.scss index 5132044..e7ee1f6 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -8,6 +8,7 @@ @import 'abstracts/mixins'; @import 'components/icons/index'; @import 'base/main'; +@import 'base/about'; div#viewport { display: flex; From 3ca338e4c61d9774cfa2380da1b168d7f0ac1bc5 Mon Sep 17 00:00:00 2001 From: maxime_senza Date: Thu, 28 May 2020 23:49:21 +0200 Subject: [PATCH 05/15] css for about page --- src/page-about.pug | 2 +- src/styles/base/about.scss | 24 ++++++++++++++++++++++-- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/src/page-about.pug b/src/page-about.pug index ca8b2b3..ae58d0d 100644 --- a/src/page-about.pug +++ b/src/page-about.pug @@ -7,7 +7,7 @@ p Ici un paragraphe qui explique ce qu'est SIB - a https://startinblox.com/fr + a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr div h3 Contacte-nous diff --git a/src/styles/base/about.scss b/src/styles/base/about.scss index 902332e..40691c1 100644 --- a/src/styles/base/about.scss +++ b/src/styles/base/about.scss @@ -1,7 +1,27 @@ #about{ - .flex-content-white{ - div{ + h2,h3{ + text-transform: uppercase; + } + .flex-content-white{ + display: flex; + >div{ + padding: 4.2em 4.7em; + text-align: center; + margin: 0 3em 3em 0; + background: white; + box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.11); + >div{ + display: flex; + flex-direction: column; + justify-content: space-between; + } + } + >div:first-child{ + width: 100%; + } + >div:last-child{ + width: 35%; } } } \ No newline at end of file From 7725350ca1b10711b74f530ff926b38d876dfec3 Mon Sep 17 00:00:00 2001 From: maxime_senza Date: Thu, 28 May 2020 23:49:46 +0200 Subject: [PATCH 06/15] feature: about sib : place import in clean spot of index --- src/index.pug | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.pug b/src/index.pug index 19d3aae..a997ede 100644 --- a/src/index.pug +++ b/src/index.pug @@ -20,9 +20,7 @@ html(lang="en") main.notLoggedIn include menu-left.pug - include page-about.pug div#viewport - if endpoints.dashboards || (endpoints.get && endpoints.get.dashboards) #dashboard(hidden).no-sidebar @@ -54,6 +52,7 @@ html(lang="en") #admin(hidden).with-sidebar include page-admin.pug + include page-about.pug if analytics each provider in analytics From bf2bddeb32d8675aa98f7b3ec0d4da8db2e56cf9 Mon Sep 17 00:00:00 2001 From: maxime_senza Date: Fri, 29 May 2020 00:28:53 +0200 Subject: [PATCH 07/15] feature : css for about page : colors & make clean on mobile --- src/page-about.pug | 2 +- src/styles/base/about.scss | 29 +++++++++++++++++++++++++++-- 2 files changed, 28 insertions(+), 3 deletions(-) diff --git a/src/page-about.pug b/src/page-about.pug index ae58d0d..39f42f1 100644 --- a/src/page-about.pug +++ b/src/page-about.pug @@ -13,5 +13,5 @@ h3 Contacte-nous p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? - div + sib-link.main-cta p Contact \ No newline at end of file diff --git a/src/styles/base/about.scss b/src/styles/base/about.scss index 40691c1..c202d11 100644 --- a/src/styles/base/about.scss +++ b/src/styles/base/about.scss @@ -1,9 +1,14 @@ #about{ + $main-color: rgb(236, 94, 92); + $second-color: white; h2,h3{ text-transform: uppercase; } .flex-content-white{ display: flex; + @media only screen and (max-width: 768px) { + flex-direction: column; + } >div{ padding: 4.2em 4.7em; text-align: center; @@ -16,12 +21,32 @@ justify-content: space-between; } } - >div:first-child{ - width: 100%; + width: 60%; } >div:last-child{ width: 35%; + @media only screen and (max-width: 768px) { + width: 60%; + } } } + + .main-cta{ + background: $second-color none repeat scroll 0% 0%; + border: 1px solid $main-color; + border-radius: 55px; + color: $main-color; + cursor: pointer; + font-weight: bold; + text-transform: uppercase; + width: 25%; + font-size: 1rem; + } + + .main-cta:hover{ + background: $main-color none repeat scroll 0% 0%; + border : 1px solid $second-color; + color: $second-color; + } } \ No newline at end of file From b0be741980092f08e3b3575f5e248f855dcb7dd1 Mon Sep 17 00:00:00 2001 From: maxime_senza Date: Fri, 29 May 2020 10:16:53 +0200 Subject: [PATCH 08/15] add space betwween text and cta's --- src/page-about.pug | 19 +++++++++++-------- src/styles/base/about.scss | 9 ++++----- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/src/page-about.pug b/src/page-about.pug index 39f42f1..f9b5b0b 100644 --- a/src/page-about.pug +++ b/src/page-about.pug @@ -3,15 +3,18 @@ h2 A propos div.flex-content-white div - h3 Cette application est développé par Startin'blox - p Ici un paragraphe qui explique ce qu'est SIB + div + h3 Cette application est développé par Startin'blox + p Ici un paragraphe qui explique ce qu'est SIB - - a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr + div + a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr div - h3 Contacte-nous - p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? + div + h3 Contacte-nous + p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? - sib-link.main-cta - p Contact \ No newline at end of file + div + sib-link.main-cta + p Contact \ No newline at end of file diff --git a/src/styles/base/about.scss b/src/styles/base/about.scss index c202d11..2b0c81b 100644 --- a/src/styles/base/about.scss +++ b/src/styles/base/about.scss @@ -15,11 +15,10 @@ margin: 0 3em 3em 0; background: white; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.11); - >div{ - display: flex; - flex-direction: column; - justify-content: space-between; - } + display: flex; + flex-direction: column; + justify-content: space-between; + } >div:first-child{ width: 60%; From 5c361bdef9f24785b56621bc31393433833331c9 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Mon, 1 Jun 2020 12:42:35 +0200 Subject: [PATCH 09/15] small fixes, remove tabs --- src/header.pug | 3 -- src/index.pug | 5 +- src/menu-left.pug | 2 +- src/page-about.pug | 24 +++++----- src/styles/base/about.scss | 93 +++++++++++++++++++------------------- 5 files changed, 61 insertions(+), 66 deletions(-) diff --git a/src/header.pug b/src/header.pug index baa32e2..6ed556d 100644 --- a/src/header.pug +++ b/src/header.pug @@ -27,9 +27,6 @@ details#user-controls.notLoggedIn if (endpoints.uploads || (endpoints.get && endpoints.get.uploads)) && (endpoints.skills || (endpoints.get && endpoints.get.skills)) && (endpoints.users || (endpoints.get && endpoints.get.users)) li sib-link(next='my-profile') Mon profil - //-li - sib-link(next='user-settings') Settings - sib-link(next='profile') Mon profil li sib-link(next='admin') Administration li diff --git a/src/index.pug b/src/index.pug index 911e51b..fd04427 100644 --- a/src/index.pug +++ b/src/index.pug @@ -17,7 +17,6 @@ html(lang="en") header#header(role='banner') include header.pug - main.notLoggedIn include menu-left.pug div#viewport @@ -52,7 +51,9 @@ html(lang="en") #admin(hidden).with-sidebar include page-admin.pug - include page-about.pug + + #about.no-sidebar.with-padding + include page-about.pug if (endpoints.skills || (endpoints.get && endpoints.get.skills)) && (endpoints.uploads || (endpoints.post && endpoints.post.uploads)) && (endpoints.users || (endpoints.post && endpoints.post.users)) #profile(hidden).no-sidebar diff --git a/src/menu-left.pug b/src/menu-left.pug index 4ccc378..d3b4edf 100644 --- a/src/menu-left.pug +++ b/src/menu-left.pug @@ -54,7 +54,6 @@ nav#main__menu.jsLeftMenu div.menu-label Tableau de bord div.menu-icon.icon-home div.divider - sib-route(name='about', hidden) if publicDirectory && (endpoints.users || (endpoints.get && endpoints.get.users)) sib-route.menu(name='members') div.menu-label Annuaire des membres @@ -139,3 +138,4 @@ nav#main__menu.jsLeftMenu sib-route(name='admin', hidden) sib-route.menu(name='profile', hidden) + sib-route(name='about', hidden) diff --git a/src/page-about.pug b/src/page-about.pug index ab6f285..3ec5af0 100644 --- a/src/page-about.pug +++ b/src/page-about.pug @@ -1,16 +1,14 @@ -#about.no-sidebar.with-padding - .views-container - h2 A propos - div.flex-content-white - div - h3 Cette application est développé par Startin'blox - p Ici un paragraphe qui explique ce qu'est SIB +.views-container + h2 A propos + div.flex-content-white + div + h3 Cette application est développé par Startin'blox + p Ici un paragraphe qui explique ce qu'est SIB - a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr + a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr - div - h3 Contacte-nous - p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? + div + h3 Contacte-nous + p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? - sib-link.main-cta - p Contact \ No newline at end of file + a(href="https://startinblox.com/fr" target="_blank").main-cta Contact \ No newline at end of file diff --git a/src/styles/base/about.scss b/src/styles/base/about.scss index 2b0c81b..8df00cb 100644 --- a/src/styles/base/about.scss +++ b/src/styles/base/about.scss @@ -1,51 +1,50 @@ #about{ - $main-color: rgb(236, 94, 92); - $second-color: white; - h2,h3{ - text-transform: uppercase; - } - .flex-content-white{ - display: flex; - @media only screen and (max-width: 768px) { - flex-direction: column; - } - >div{ - padding: 4.2em 4.7em; - text-align: center; - margin: 0 3em 3em 0; - background: white; - box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.11); - display: flex; - flex-direction: column; - justify-content: space-between; + $main-color: rgb(236, 94, 92); + $second-color: white; + h2,h3{ + text-transform: uppercase; + } + .flex-content-white{ + display: flex; + @media only screen and (max-width: 768px) { + flex-direction: column; + } + >div{ + padding: 4.2em 4.7em; + text-align: center; + margin: 0 3em 3em 0; + background: white; + box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.11); + display: flex; + flex-direction: column; + justify-content: space-between; + } + >div:first-child{ + width: 60%; + } + >div:last-child{ + width: 35%; + @media only screen and (max-width: 768px) { + width: 60%; + } + } + } - } - >div:first-child{ - width: 60%; - } - >div:last-child{ - width: 35%; - @media only screen and (max-width: 768px) { - width: 60%; - } - } - } + .main-cta{ + background: $second-color none repeat scroll 0% 0%; + border: 1px solid $main-color; + border-radius: 55px; + color: $main-color; + cursor: pointer; + font-weight: bold; + text-transform: uppercase; + width: 25%; + font-size: 1rem; + } - .main-cta{ - background: $second-color none repeat scroll 0% 0%; - border: 1px solid $main-color; - border-radius: 55px; - color: $main-color; - cursor: pointer; - font-weight: bold; - text-transform: uppercase; - width: 25%; - font-size: 1rem; - } - - .main-cta:hover{ - background: $main-color none repeat scroll 0% 0%; - border : 1px solid $second-color; - color: $second-color; - } + .main-cta:hover{ + background: $main-color none repeat scroll 0% 0%; + border : 1px solid $second-color; + color: $second-color; + } } \ No newline at end of file From cf166b71d77a6e0aa60ce29393062e8323f2640d Mon Sep 17 00:00:00 2001 From: maxime_senza Date: Mon, 1 Jun 2020 16:05:23 +0200 Subject: [PATCH 10/15] feature: about sib | align center blocs & fix contact button --- src/styles/base/about.scss | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/styles/base/about.scss b/src/styles/base/about.scss index 8df00cb..3c9d33e 100644 --- a/src/styles/base/about.scss +++ b/src/styles/base/about.scss @@ -4,6 +4,9 @@ h2,h3{ text-transform: uppercase; } + h2{ + margin-left: 1.5em; + } .flex-content-white{ display: flex; @media only screen and (max-width: 768px) { @@ -12,7 +15,7 @@ >div{ padding: 4.2em 4.7em; text-align: center; - margin: 0 3em 3em 0; + margin: 0 1.5em 3em 1.5em; background: white; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.11); display: flex; @@ -28,6 +31,9 @@ width: 60%; } } + a{ + text-decoration: none; + } } .main-cta{ @@ -39,7 +45,9 @@ font-weight: bold; text-transform: uppercase; width: 25%; - font-size: 1rem; + font-size: 1.1rem; + align-self: center; + padding: 5px; } .main-cta:hover{ From 65be45c7772ffb16ac4cf384b75656346eab4f79 Mon Sep 17 00:00:00 2001 From: maxime_senza Date: Mon, 1 Jun 2020 16:14:00 +0200 Subject: [PATCH 11/15] feature: about sib - reduce padding size & add div in blocs --- src/page-about.pug | 18 ++++++++++-------- src/styles/base/about.scss | 4 ++-- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/src/page-about.pug b/src/page-about.pug index 3ec5af0..f8748aa 100644 --- a/src/page-about.pug +++ b/src/page-about.pug @@ -2,13 +2,15 @@ h2 A propos div.flex-content-white div - h3 Cette application est développé par Startin'blox - p Ici un paragraphe qui explique ce qu'est SIB - - a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr + div + h3 Cette application est développé par Startin'blox + p Ici un paragraphe qui explique ce qu'est SIB + div + a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr div - h3 Contacte-nous - p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? - - a(href="https://startinblox.com/fr" target="_blank").main-cta Contact \ No newline at end of file + div + h3 Contacte-nous + p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? + div + a(href="https://startinblox.com/fr" target="_blank").main-cta Contact \ No newline at end of file diff --git a/src/styles/base/about.scss b/src/styles/base/about.scss index 3c9d33e..c7b6230 100644 --- a/src/styles/base/about.scss +++ b/src/styles/base/about.scss @@ -13,7 +13,7 @@ flex-direction: column; } >div{ - padding: 4.2em 4.7em; + padding: 2em 2.5em; text-align: center; margin: 0 1.5em 3em 1.5em; background: white; @@ -47,7 +47,7 @@ width: 25%; font-size: 1.1rem; align-self: center; - padding: 5px; + padding: 0.5rem 1.5rem; } .main-cta:hover{ From 3d860913a635b392b2b333ee863bd50ab1d28a31 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Mon, 1 Jun 2020 16:28:04 +0200 Subject: [PATCH 12/15] fix: profile url --- src/header.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header.pug b/src/header.pug index 6ed556d..f3e9241 100644 --- a/src/header.pug +++ b/src/header.pug @@ -26,7 +26,7 @@ details#user-controls.notLoggedIn ul if (endpoints.uploads || (endpoints.get && endpoints.get.uploads)) && (endpoints.skills || (endpoints.get && endpoints.get.skills)) && (endpoints.users || (endpoints.get && endpoints.get.users)) li - sib-link(next='my-profile') Mon profil + sib-link(next='profile') Mon profil li sib-link(next='admin') Administration li From 4a33ead577aedf27872b1dc48a7e839193b3f73d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Tue, 2 Jun 2020 10:43:00 +0000 Subject: [PATCH 13/15] update: add text to about --- src/page-about.pug | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/page-about.pug b/src/page-about.pug index f8748aa..d14df9b 100644 --- a/src/page-about.pug +++ b/src/page-about.pug @@ -1,16 +1,17 @@ -.views-container - h2 A propos - div.flex-content-white - div - div - h3 Cette application est développé par Startin'blox - p Ici un paragraphe qui explique ce qu'est SIB - div - a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr - - div - div - h3 Contacte-nous - p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? - div +.views-container + h2 A propos + div.flex-content-white + div + div + h3 Cette application est développé par Startin'blox + p Startin’blox est une coopérative qui développe des outils libres pour construire facilement et à moindre coût des applications fédérées et interopérables basées sur les derniers standards du web poussés par le projet SOLID. + p Sa mission est de redonner le pouvoir aux utilisateurs en leur permettant de reprendre la main sur leur outil numérique et de bénéficier d’un effet de réseau au sein d’un écosystème choisi afin de s’émanciper des grandes plateformes. + div + a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr + + div + div + h3 Contacte-nous + p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? + div a(href="https://startinblox.com/fr" target="_blank").main-cta Contact \ No newline at end of file From bee847d888760b40f1d27e5446f59542501d0d22 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Tue, 2 Jun 2020 10:53:26 +0000 Subject: [PATCH 14/15] fix: typo --- src/page-about.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/page-about.pug b/src/page-about.pug index d14df9b..54d5346 100644 --- a/src/page-about.pug +++ b/src/page-about.pug @@ -3,7 +3,7 @@ div.flex-content-white div div - h3 Cette application est développé par Startin'blox + h3 Cette application est développée par Startin'blox p Startin’blox est une coopérative qui développe des outils libres pour construire facilement et à moindre coût des applications fédérées et interopérables basées sur les derniers standards du web poussés par le projet SOLID. p Sa mission est de redonner le pouvoir aux utilisateurs en leur permettant de reprendre la main sur leur outil numérique et de bénéficier d’un effet de réseau au sein d’un écosystème choisi afin de s’émanciper des grandes plateformes. div From c856621bd8820807bb05bb35269b6d59912d660d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Wed, 3 Jun 2020 13:43:14 +0000 Subject: [PATCH 15/15] fix: router magic --- src/page-about.pug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/page-about.pug b/src/page-about.pug index 54d5346..0bad6cf 100644 --- a/src/page-about.pug +++ b/src/page-about.pug @@ -7,11 +7,11 @@ p Startin’blox est une coopérative qui développe des outils libres pour construire facilement et à moindre coût des applications fédérées et interopérables basées sur les derniers standards du web poussés par le projet SOLID. p Sa mission est de redonner le pouvoir aux utilisateurs en leur permettant de reprendre la main sur leur outil numérique et de bénéficier d’un effet de réseau au sein d’un écosystème choisi afin de s’émanciper des grandes plateformes. div - a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr + a(href="https://startinblox.com/fr/" target="_blank") https://startinblox.com/fr/ div div h3 Contacte-nous p Tu veux contribuer, nous remonter un bug, nous suggérer une amélioration, travailler avec nous ? div - a(href="https://startinblox.com/fr" target="_blank").main-cta Contact \ No newline at end of file + a(href="https://startinblox.com/fr/#home-contact" target="_blank").main-cta Contact \ No newline at end of file