forked from codegouvfr/eleventy-dsfr
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
hjonin
committed
Dec 4, 2023
1 parent
0c4faad
commit 22d5ecd
Showing
5 changed files
with
68 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
title: "Awesome CodeGouvFr" | ||
layout: layouts/page.njk | ||
--- | ||
<p class="fr-text--lead"> | ||
Voici la liste des logiciels libres développés par des administrations et à fort potentiel de réutilisation. | ||
<br> | ||
Vous pouvez en apprendre plus dans le <a href="https://github.com/codegouvfr/awesome-codegouvfr" target="_blank">dépôt dédié à cette liste</a> et dans <a>l'article de blog</a> expliquant ce projet. | ||
</p> | ||
<div class="fr-grid-row fr-grid-row--gutters fr-grid-row--center fr-mb-3w"> | ||
{% asyncAll filename, project in awesome.dist %} | ||
<div class="fr-col-12 fr-col-md-3"> | ||
{% set card = { | ||
url: false, | ||
externalUrl: project.landingURL or project.url, | ||
title: project.name, | ||
description: project.description.fr.shortDescription, | ||
image: { | ||
url: project.logo, | ||
alt: "Logo du projet" | ||
}, | ||
detail: '<img src="' + project.awesomeShield + '" alt="Badge Awesome CodeGouvFr du projet">' | ||
} %} | ||
{% include "components/card.njk" %} | ||
</div> | ||
{% endall %} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters