Skip to content

Commit

Permalink
feat(widget): branchement sur le bouton
Browse files Browse the repository at this point in the history
  • Loading branch information
alebret committed Feb 9, 2022
1 parent fc945cd commit 77d5c3d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
12 changes: 4 additions & 8 deletions config-yml/modules/articles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ articles:
Pour mettre en place le widget sur votre site internet, contactez nous à l'adresse mail suivante : contact-nos1000jours@fabrique.social.gouv.fr
button_text: Utiliser l'outil dès maintenant
button_url: /integration-widget
slug: EPDS-site-partenaire

- title: Vous êtes professionnel de santé
Expand All @@ -42,10 +41,7 @@ articles:
Contactez nous pour une démonstration à l'adresse mail suivante : contact-nos1000jours@fabrique.social.gouv.fr


button_text: Utiliser l'outil dès maintenant
button_url: https://nos1000jours-web-pro.fabrique.social.gouv.fr/
slug: EPDS-pro

15 changes: 10 additions & 5 deletions src/pages/actualites/[articleId].js
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,19 @@ function Article() {
/>
<Col md={{ offset: 2, span: 8 }}>
<div className="font-weight-bold pb-5" style={{ fontSize: "32px" }}>
{singleArticle.title_content && singleArticle.title_content}
{singleArticle.title_content}
</div>
<p className="content-article" style={{ whiteSpace: "pre-wrap" }}>
{singleArticle.content && singleArticle.content}
{singleArticle.content}
</p>
<a href="https://nos1000jours-web-pro.fabrique.social.gouv.fr/" target="_blank" className="blue-btn mb-5 btn btn-primary">
Utiliser l'outil dès maintenant
</a>
<a
href={singleArticle.button_url}
target="_blank"
rel="noreferrer"
className="blue-btn mb-5 btn btn-primary"
>
{singleArticle.button_text}
</a>
</Col>
</Col>
)}
Expand Down

0 comments on commit 77d5c3d

Please sign in to comment.