diff --git a/README.md b/README.md index d4695dc8..913e91a0 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,5 @@ Le contenu rédactionnel du site est une publication DINUM, 20 avenue de Ségur, ### Crédits images -- [Gradient icons created by srip](https://www.flaticon.com/authors/srip/gradient) -- hat by sripfoto from [Noun Project](https://thenounproject.com/srip/) (CC BY 3.0) +- [Programmer.png](public/illustrations/Programmer.png) par ven sur [IllustrationKit](https://illustrationkit.com/illustrations/ven) - [Blank_man_placeholder.svg](https://fr.wikipedia.org/wiki/Fichier:Blank_man_placeholder.svg) par [AntoFran](https://commons.wikimedia.org/wiki/User:AntoFran) sous licence [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0>). - diff --git a/_includes/components/callout.njk b/_includes/components/callout.njk index 7ed2118c..31f7a241 100644 --- a/_includes/components/callout.njk +++ b/_includes/components/callout.njk @@ -2,7 +2,7 @@

{{ callout.title }}

- {{ callout.description | safe }} + {{ callout.description }}

{% if callout.link %} diff --git a/_includes/components/card.njk b/_includes/components/card.njk index 4796bc8b..66fa65b7 100644 --- a/_includes/components/card.njk +++ b/_includes/components/card.njk @@ -11,7 +11,7 @@ {% else %}{{ card.title }} {% endif %} -

{{ card.description | safe }}

+

{{ card.description }}

{% if card.tags %} {% set tags = card.tags %} @@ -23,8 +23,8 @@ {{ card.date | readableDate }}

- {% elif card.detail %} - {{ card.detail | safe }} + {% elif card.detail %} +

{{ card.detail }}

{% endif %}
@@ -47,9 +47,9 @@ {% endif %} {% if card.image.path %}
{% imageSync card.image.path, card.image.alt %}
- {% elif card.image.url %} + {% elif card.image.src %}
- {{ card.image.alt }} + {{ card.image.alt }}
{% endif %} diff --git a/_includes/components/tile.njk b/_includes/components/tile.njk index 100e49f0..b4d64f5c 100644 --- a/_includes/components/tile.njk +++ b/_includes/components/tile.njk @@ -1,19 +1,28 @@ {% if not tile %}{% set tile = params %}{% endif %}