├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── assets ├── css │ ├── base │ │ ├── layout.css │ │ └── main.css │ ├── charte.css │ ├── checka11y.css │ ├── debug.css │ ├── element │ │ ├── blockquote.css │ │ ├── codeformatting.css │ │ ├── definitionlists.css │ │ ├── embed.css │ │ ├── table.css │ │ └── tableofcontents.css │ ├── fonts.css │ ├── mermaid.css │ ├── night-owl.min.css │ ├── object │ │ ├── benchmark.css │ │ ├── breadcrumb.css │ │ ├── buttons.css │ │ ├── card.css │ │ ├── counter.css │ │ ├── form.css │ │ ├── gantt.css │ │ ├── icon.css │ │ ├── medal.css │ │ ├── nav-anchor.css │ │ ├── nav-language.css │ │ ├── nav-tabs.css │ │ ├── pagination.css │ │ ├── parcours.css │ │ ├── scores.css │ │ ├── summary.css │ │ ├── tag.css │ │ ├── timeline.css │ │ └── usertests.css │ ├── overgo │ │ ├── base │ │ │ └── base.css │ │ ├── config │ │ │ ├── colors.css │ │ │ ├── mediaqueries.css │ │ │ └── typography.css │ │ ├── generic │ │ │ ├── normalize-opentype.css │ │ │ ├── print.css │ │ │ └── skiplink.css │ │ └── tool │ │ │ └── utilities.css │ ├── simple-lightbox.min.css │ └── styles.css └── js │ ├── debug.js │ ├── debug │ ├── jquery-3.4.1.slim.min.js │ ├── popper.min.js │ ├── sa11y.js │ └── tippy-bundle.umd.min.js │ ├── frappe-charts.min.iife.js │ ├── frappe-colors.js │ ├── highlight.min.js │ ├── mermaid.min.js │ ├── simple-lightbox.min.js │ └── van11y-accessible-tab-panel-aria.min.js ├── config.toml ├── content ├── 404.md ├── _index.md ├── _redirects ├── audits │ └── _index.md ├── greenit │ └── 0.3 │ │ └── criteres.md ├── offline.md ├── pidila │ └── 1.0 │ │ └── criteres.md ├── plans │ └── _index.md ├── rgaa │ ├── 4.0 │ │ ├── criteres.md │ │ └── glossaire.md │ ├── 4.1 │ │ ├── criteres.md │ │ └── glossaire.md │ └── _index.md ├── rgesn │ └── 0.1 │ │ └── criteres.md ├── schema.md ├── schemas │ └── _index.md ├── sitemap.md └── styleguide │ └── _index.md ├── data ├── greenit │ └── 0.3.json ├── month.yml ├── pidila │ ├── 1.0 │ │ └── criteria.json │ └── criteria.json ├── rgaa │ ├── 4.0 │ │ ├── criteria.json │ │ └── glossary.json │ ├── 4.1 │ │ ├── criteria.json │ │ └── glossary.json │ ├── criteria.json │ └── tests.yml └── rgesn │ └── 0.1.json ├── exampleSite ├── .gitignore ├── config.toml ├── content │ └── audits │ │ ├── projet1 │ │ ├── accessibility │ │ │ ├── 2022-02-10.csv │ │ │ └── context.yml │ │ └── index.md │ │ └── projet2 │ │ ├── accessibility │ │ ├── 2020-04-01.csv │ │ ├── 2022-01-18.csv │ │ └── context.yml │ │ └── index.md └── exampleFiles │ ├── .github │ └── workflows │ │ └── gh-pages.yml │ ├── .gitlab-ci.yml │ ├── grille-criteres-rgaa.csv │ ├── grille-tests-rgaa4.0.csv │ └── grille-tests-rgaa4.1.csv ├── go.mod ├── i18n ├── en.yaml └── fr.yaml ├── images └── frago.png ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ ├── render-heading.html │ │ ├── render-image.html │ │ └── render-link.html │ ├── baseof.html │ ├── index.json │ ├── list.html │ ├── list.json │ ├── single.declaration.txt │ ├── single.html │ ├── single.json │ └── sitemap.xml ├── accessibility │ ├── single.declaration.txt │ ├── single.declarationpage.txt │ └── single.html ├── audits │ ├── list.accessibility.csv │ ├── list.accessibility.json │ ├── list.declaration.txt │ ├── list.html │ ├── list.performance.json │ ├── list.recommendation.json │ ├── single.accessibility.csv │ ├── single.accessibility.json │ ├── single.declaration.txt │ ├── single.html │ ├── single.performance.json │ └── single.recommendation.json ├── categories │ └── category.html ├── contact │ └── single.html ├── directory │ └── single.html ├── ecoconception │ └── single.html ├── glossary │ └── single.html ├── greenit │ └── single.html ├── index.html ├── index.json.json ├── index.schema.txt ├── offline │ └── single.html ├── partials │ ├── components │ │ ├── contact │ │ │ └── script.js │ │ ├── parcours │ │ │ └── template.html │ │ ├── personas │ │ │ └── template.html │ │ ├── phases │ │ │ └── template.html │ │ ├── recommendation │ │ │ ├── critical.html │ │ │ └── lot.html │ │ ├── scores │ │ │ ├── accessibility-graph.html │ │ │ ├── accessibility-small.html │ │ │ ├── accessibility.html │ │ │ ├── criteria.html │ │ │ ├── ecoconception-small.html │ │ │ ├── greenit-small.html │ │ │ ├── greenit.html │ │ │ ├── performance-small.html │ │ │ ├── performance.html │ │ │ ├── quality-small.html │ │ │ └── quality.html │ │ └── steps │ │ │ ├── script.js │ │ │ └── template.html │ ├── debug │ │ ├── debug.html │ │ ├── debuglist-element.html │ │ ├── debuglist.html │ │ └── debugprint.html │ ├── elements │ │ ├── content.html │ │ ├── images.html │ │ ├── tableofcontent.html │ │ └── time-to-read.html │ ├── footer.html │ ├── list.html │ ├── navigations │ │ ├── breadcrumb.html │ │ ├── nav-prevnext.html │ │ ├── nav-translated.html │ │ ├── paginator.html │ │ └── tags.html │ ├── render │ │ ├── accessibility.html │ │ ├── actions.html │ │ ├── context.html │ │ ├── ecoconception.html │ │ ├── externals.html │ │ ├── filepath.html │ │ ├── greenit.html │ │ ├── issimpleproject.html │ │ ├── lastfile.html │ │ ├── methodology.html │ │ ├── notepath.html │ │ ├── performance.html │ │ ├── projectpath.html │ │ ├── recommendation.html │ │ └── rootpath.html │ ├── templates │ │ ├── accessibility.html │ │ ├── actions.html │ │ ├── dashboard.html │ │ ├── declaration.html │ │ ├── ecoconception.html │ │ ├── greenit.html │ │ ├── performance.html │ │ ├── projects-list.html │ │ ├── projects-monitoring.html │ │ ├── projects.html │ │ ├── recommendation.html │ │ ├── schema.html │ │ └── validity.html │ └── utils │ │ ├── css.html │ │ └── isURL.html ├── performance │ └── single.html ├── personas │ ├── list.html │ └── single.html ├── pidila │ └── single.html ├── plans │ └── single.html ├── post │ └── single.html ├── projects │ └── single.html ├── quality │ └── single.html ├── rgaa │ └── single.html ├── rgesn │ └── single.html ├── schemas │ └── single.html ├── shortcodes │ ├── backlinks.html │ ├── benchmark.html │ ├── graphic.html │ ├── list-content.html │ ├── mermaid.html │ ├── mermaidmeetings.html │ ├── parcours.html │ ├── personas.html │ └── similary.html ├── simple │ └── single.html ├── sitemap │ └── single.html ├── styleguide │ └── list.html └── usertests │ └── single.html ├── netlify.toml ├── package.json ├── postcss.config.js ├── static ├── assets │ ├── css │ │ └── fonts.css │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon-original.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ ├── ms-icon-70x70.png │ │ └── site.webmanifest │ ├── fonts │ │ ├── Marianne-Bold.woff2 │ │ ├── Marianne-ExtraBold.woff2 │ │ ├── Marianne-Light.woff2 │ │ ├── Marianne-Medium.woff2 │ │ ├── Marianne-Regular.woff2 │ │ └── Marianne-Thin.woff2 │ └── images │ │ ├── greenit │ │ ├── picto-dechets.svg │ │ ├── picto-difficulte.svg │ │ ├── picto-eau.svg │ │ ├── picto-electricite.svg │ │ ├── picto-gaz.svg │ │ ├── picto-impact.svg │ │ ├── picto-potentiel-economie.svg │ │ ├── picto-potentiel-environnement.svg │ │ ├── picto-potentiel-social.svg │ │ ├── picto-priorite.svg │ │ ├── picto-ressources.svg │ │ ├── picto-social.svg │ │ └── picto.svg │ │ ├── logo.svg │ │ └── logodark.svg ├── manifest.json └── sw.js ├── theme.toml └── themes ├── documentago └── layouts │ └── _default │ └── list.html └── frago └── layouts └── partials └── elements └── content.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/base/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/base/layout.css -------------------------------------------------------------------------------- /assets/css/base/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/base/main.css -------------------------------------------------------------------------------- /assets/css/charte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/charte.css -------------------------------------------------------------------------------- /assets/css/checka11y.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/checka11y.css -------------------------------------------------------------------------------- /assets/css/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/debug.css -------------------------------------------------------------------------------- /assets/css/element/blockquote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/element/blockquote.css -------------------------------------------------------------------------------- /assets/css/element/codeformatting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/element/codeformatting.css -------------------------------------------------------------------------------- /assets/css/element/definitionlists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/element/definitionlists.css -------------------------------------------------------------------------------- /assets/css/element/embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/element/embed.css -------------------------------------------------------------------------------- /assets/css/element/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/element/table.css -------------------------------------------------------------------------------- /assets/css/element/tableofcontents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/element/tableofcontents.css -------------------------------------------------------------------------------- /assets/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/fonts.css -------------------------------------------------------------------------------- /assets/css/mermaid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/mermaid.css -------------------------------------------------------------------------------- /assets/css/night-owl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/night-owl.min.css -------------------------------------------------------------------------------- /assets/css/object/benchmark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/benchmark.css -------------------------------------------------------------------------------- /assets/css/object/breadcrumb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/breadcrumb.css -------------------------------------------------------------------------------- /assets/css/object/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/buttons.css -------------------------------------------------------------------------------- /assets/css/object/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/card.css -------------------------------------------------------------------------------- /assets/css/object/counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/counter.css -------------------------------------------------------------------------------- /assets/css/object/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/form.css -------------------------------------------------------------------------------- /assets/css/object/gantt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/gantt.css -------------------------------------------------------------------------------- /assets/css/object/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/icon.css -------------------------------------------------------------------------------- /assets/css/object/medal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/medal.css -------------------------------------------------------------------------------- /assets/css/object/nav-anchor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/nav-anchor.css -------------------------------------------------------------------------------- /assets/css/object/nav-language.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/nav-language.css -------------------------------------------------------------------------------- /assets/css/object/nav-tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/nav-tabs.css -------------------------------------------------------------------------------- /assets/css/object/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/pagination.css -------------------------------------------------------------------------------- /assets/css/object/parcours.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/parcours.css -------------------------------------------------------------------------------- /assets/css/object/scores.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/scores.css -------------------------------------------------------------------------------- /assets/css/object/summary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/summary.css -------------------------------------------------------------------------------- /assets/css/object/tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/tag.css -------------------------------------------------------------------------------- /assets/css/object/timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/timeline.css -------------------------------------------------------------------------------- /assets/css/object/usertests.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/object/usertests.css -------------------------------------------------------------------------------- /assets/css/overgo/base/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/overgo/base/base.css -------------------------------------------------------------------------------- /assets/css/overgo/config/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/overgo/config/colors.css -------------------------------------------------------------------------------- /assets/css/overgo/config/mediaqueries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/overgo/config/mediaqueries.css -------------------------------------------------------------------------------- /assets/css/overgo/config/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/overgo/config/typography.css -------------------------------------------------------------------------------- /assets/css/overgo/generic/normalize-opentype.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/overgo/generic/normalize-opentype.css -------------------------------------------------------------------------------- /assets/css/overgo/generic/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/overgo/generic/print.css -------------------------------------------------------------------------------- /assets/css/overgo/generic/skiplink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/overgo/generic/skiplink.css -------------------------------------------------------------------------------- /assets/css/overgo/tool/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/overgo/tool/utilities.css -------------------------------------------------------------------------------- /assets/css/simple-lightbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/simple-lightbox.min.css -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/css/styles.css -------------------------------------------------------------------------------- /assets/js/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/debug.js -------------------------------------------------------------------------------- /assets/js/debug/jquery-3.4.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/debug/jquery-3.4.1.slim.min.js -------------------------------------------------------------------------------- /assets/js/debug/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/debug/popper.min.js -------------------------------------------------------------------------------- /assets/js/debug/sa11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/debug/sa11y.js -------------------------------------------------------------------------------- /assets/js/debug/tippy-bundle.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/debug/tippy-bundle.umd.min.js -------------------------------------------------------------------------------- /assets/js/frappe-charts.min.iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/frappe-charts.min.iife.js -------------------------------------------------------------------------------- /assets/js/frappe-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/frappe-colors.js -------------------------------------------------------------------------------- /assets/js/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/highlight.min.js -------------------------------------------------------------------------------- /assets/js/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/mermaid.min.js -------------------------------------------------------------------------------- /assets/js/simple-lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/simple-lightbox.min.js -------------------------------------------------------------------------------- /assets/js/van11y-accessible-tab-panel-aria.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/assets/js/van11y-accessible-tab-panel-aria.min.js -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/config.toml -------------------------------------------------------------------------------- /content/404.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Page d’erreur 3 | sitemapExclude: true 4 | --- 5 | -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/_redirects: -------------------------------------------------------------------------------- 1 | 2 | /* /404.html 404 3 | -------------------------------------------------------------------------------- /content/audits/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/content/audits/_index.md -------------------------------------------------------------------------------- /content/greenit/0.3/criteres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/content/greenit/0.3/criteres.md -------------------------------------------------------------------------------- /content/offline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/content/offline.md -------------------------------------------------------------------------------- /content/pidila/1.0/criteres.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Critères Pidila 3 | --- 4 | -------------------------------------------------------------------------------- /content/plans/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Plan d’actions" 3 | --- 4 | -------------------------------------------------------------------------------- /content/rgaa/4.0/criteres.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Critères RGAA 4.0 3 | --- 4 | -------------------------------------------------------------------------------- /content/rgaa/4.0/glossaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/content/rgaa/4.0/glossaire.md -------------------------------------------------------------------------------- /content/rgaa/4.1/criteres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/content/rgaa/4.1/criteres.md -------------------------------------------------------------------------------- /content/rgaa/4.1/glossaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/content/rgaa/4.1/glossaire.md -------------------------------------------------------------------------------- /content/rgaa/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Documents RGAA 3 | --- 4 | -------------------------------------------------------------------------------- /content/rgesn/0.1/criteres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/content/rgesn/0.1/criteres.md -------------------------------------------------------------------------------- /content/schema.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Schéma Pluriannuel" 3 | type: schemas 4 | --- 5 | -------------------------------------------------------------------------------- /content/schemas/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Schémas Pluriannuels 3 | --- 4 | -------------------------------------------------------------------------------- /content/sitemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/content/sitemap.md -------------------------------------------------------------------------------- /content/styleguide/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/content/styleguide/_index.md -------------------------------------------------------------------------------- /data/greenit/0.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/greenit/0.3.json -------------------------------------------------------------------------------- /data/month.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/month.yml -------------------------------------------------------------------------------- /data/pidila/1.0/criteria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/pidila/1.0/criteria.json -------------------------------------------------------------------------------- /data/pidila/criteria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/pidila/criteria.json -------------------------------------------------------------------------------- /data/rgaa/4.0/criteria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/rgaa/4.0/criteria.json -------------------------------------------------------------------------------- /data/rgaa/4.0/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/rgaa/4.0/glossary.json -------------------------------------------------------------------------------- /data/rgaa/4.1/criteria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/rgaa/4.1/criteria.json -------------------------------------------------------------------------------- /data/rgaa/4.1/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/rgaa/4.1/glossary.json -------------------------------------------------------------------------------- /data/rgaa/criteria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/rgaa/criteria.json -------------------------------------------------------------------------------- /data/rgaa/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/rgaa/tests.yml -------------------------------------------------------------------------------- /data/rgesn/0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/data/rgesn/0.1.json -------------------------------------------------------------------------------- /exampleSite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/.gitignore -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/content/audits/projet1/accessibility/2022-02-10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/content/audits/projet1/accessibility/2022-02-10.csv -------------------------------------------------------------------------------- /exampleSite/content/audits/projet1/accessibility/context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/content/audits/projet1/accessibility/context.yml -------------------------------------------------------------------------------- /exampleSite/content/audits/projet1/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Projet 1 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/audits/projet2/accessibility/2020-04-01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/content/audits/projet2/accessibility/2020-04-01.csv -------------------------------------------------------------------------------- /exampleSite/content/audits/projet2/accessibility/2022-01-18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/content/audits/projet2/accessibility/2022-01-18.csv -------------------------------------------------------------------------------- /exampleSite/content/audits/projet2/accessibility/context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/content/audits/projet2/accessibility/context.yml -------------------------------------------------------------------------------- /exampleSite/content/audits/projet2/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Projet2 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/exampleFiles/.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/exampleFiles/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /exampleSite/exampleFiles/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/exampleFiles/.gitlab-ci.yml -------------------------------------------------------------------------------- /exampleSite/exampleFiles/grille-criteres-rgaa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/exampleFiles/grille-criteres-rgaa.csv -------------------------------------------------------------------------------- /exampleSite/exampleFiles/grille-tests-rgaa4.0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/exampleFiles/grille-tests-rgaa4.0.csv -------------------------------------------------------------------------------- /exampleSite/exampleFiles/grille-tests-rgaa4.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/exampleSite/exampleFiles/grille-tests-rgaa4.1.csv -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/disic/frago 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/i18n/en.yaml -------------------------------------------------------------------------------- /i18n/fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/i18n/fr.yaml -------------------------------------------------------------------------------- /images/frago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/images/frago.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/_default/_markup/render-image.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/_default/index.json -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/_default/list.json -------------------------------------------------------------------------------- /layouts/_default/single.declaration.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/single.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/_default/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/_default/sitemap.xml -------------------------------------------------------------------------------- /layouts/accessibility/single.declaration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/accessibility/single.declaration.txt -------------------------------------------------------------------------------- /layouts/accessibility/single.declarationpage.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/accessibility/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/accessibility/single.html -------------------------------------------------------------------------------- /layouts/audits/list.accessibility.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/audits/list.accessibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/audits/list.accessibility.json -------------------------------------------------------------------------------- /layouts/audits/list.declaration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/audits/list.declaration.txt -------------------------------------------------------------------------------- /layouts/audits/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/audits/list.html -------------------------------------------------------------------------------- /layouts/audits/list.performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/audits/list.performance.json -------------------------------------------------------------------------------- /layouts/audits/list.recommendation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/audits/list.recommendation.json -------------------------------------------------------------------------------- /layouts/audits/single.accessibility.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/audits/single.accessibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/audits/single.accessibility.json -------------------------------------------------------------------------------- /layouts/audits/single.declaration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/audits/single.declaration.txt -------------------------------------------------------------------------------- /layouts/audits/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/audits/single.html -------------------------------------------------------------------------------- /layouts/audits/single.performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/audits/single.performance.json -------------------------------------------------------------------------------- /layouts/audits/single.recommendation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/audits/single.recommendation.json -------------------------------------------------------------------------------- /layouts/categories/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/categories/category.html -------------------------------------------------------------------------------- /layouts/contact/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/contact/single.html -------------------------------------------------------------------------------- /layouts/directory/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/directory/single.html -------------------------------------------------------------------------------- /layouts/ecoconception/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/ecoconception/single.html -------------------------------------------------------------------------------- /layouts/glossary/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/glossary/single.html -------------------------------------------------------------------------------- /layouts/greenit/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/greenit/single.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/index.json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/index.json.json -------------------------------------------------------------------------------- /layouts/index.schema.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/index.schema.txt -------------------------------------------------------------------------------- /layouts/offline/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/offline/single.html -------------------------------------------------------------------------------- /layouts/partials/components/contact/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/contact/script.js -------------------------------------------------------------------------------- /layouts/partials/components/parcours/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/parcours/template.html -------------------------------------------------------------------------------- /layouts/partials/components/personas/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/personas/template.html -------------------------------------------------------------------------------- /layouts/partials/components/phases/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/phases/template.html -------------------------------------------------------------------------------- /layouts/partials/components/recommendation/critical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/recommendation/critical.html -------------------------------------------------------------------------------- /layouts/partials/components/recommendation/lot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/recommendation/lot.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/accessibility-graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/accessibility-graph.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/accessibility-small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/accessibility-small.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/accessibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/accessibility.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/criteria.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/criteria.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/ecoconception-small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/ecoconception-small.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/greenit-small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/greenit-small.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/greenit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/greenit.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/performance-small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/performance-small.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/performance.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/quality-small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/quality-small.html -------------------------------------------------------------------------------- /layouts/partials/components/scores/quality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/scores/quality.html -------------------------------------------------------------------------------- /layouts/partials/components/steps/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/steps/script.js -------------------------------------------------------------------------------- /layouts/partials/components/steps/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/components/steps/template.html -------------------------------------------------------------------------------- /layouts/partials/debug/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/debug/debug.html -------------------------------------------------------------------------------- /layouts/partials/debug/debuglist-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/debug/debuglist-element.html -------------------------------------------------------------------------------- /layouts/partials/debug/debuglist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/debug/debuglist.html -------------------------------------------------------------------------------- /layouts/partials/debug/debugprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/debug/debugprint.html -------------------------------------------------------------------------------- /layouts/partials/elements/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/elements/content.html -------------------------------------------------------------------------------- /layouts/partials/elements/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/elements/images.html -------------------------------------------------------------------------------- /layouts/partials/elements/tableofcontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/elements/tableofcontent.html -------------------------------------------------------------------------------- /layouts/partials/elements/time-to-read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/elements/time-to-read.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/list.html -------------------------------------------------------------------------------- /layouts/partials/navigations/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/navigations/breadcrumb.html -------------------------------------------------------------------------------- /layouts/partials/navigations/nav-prevnext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/navigations/nav-prevnext.html -------------------------------------------------------------------------------- /layouts/partials/navigations/nav-translated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/navigations/nav-translated.html -------------------------------------------------------------------------------- /layouts/partials/navigations/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/navigations/paginator.html -------------------------------------------------------------------------------- /layouts/partials/navigations/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/navigations/tags.html -------------------------------------------------------------------------------- /layouts/partials/render/accessibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/accessibility.html -------------------------------------------------------------------------------- /layouts/partials/render/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/actions.html -------------------------------------------------------------------------------- /layouts/partials/render/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/context.html -------------------------------------------------------------------------------- /layouts/partials/render/ecoconception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/ecoconception.html -------------------------------------------------------------------------------- /layouts/partials/render/externals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/externals.html -------------------------------------------------------------------------------- /layouts/partials/render/filepath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/filepath.html -------------------------------------------------------------------------------- /layouts/partials/render/greenit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/greenit.html -------------------------------------------------------------------------------- /layouts/partials/render/issimpleproject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/issimpleproject.html -------------------------------------------------------------------------------- /layouts/partials/render/lastfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/lastfile.html -------------------------------------------------------------------------------- /layouts/partials/render/methodology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/methodology.html -------------------------------------------------------------------------------- /layouts/partials/render/notepath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/notepath.html -------------------------------------------------------------------------------- /layouts/partials/render/performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/performance.html -------------------------------------------------------------------------------- /layouts/partials/render/projectpath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/projectpath.html -------------------------------------------------------------------------------- /layouts/partials/render/recommendation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/recommendation.html -------------------------------------------------------------------------------- /layouts/partials/render/rootpath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/render/rootpath.html -------------------------------------------------------------------------------- /layouts/partials/templates/accessibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/accessibility.html -------------------------------------------------------------------------------- /layouts/partials/templates/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/actions.html -------------------------------------------------------------------------------- /layouts/partials/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/dashboard.html -------------------------------------------------------------------------------- /layouts/partials/templates/declaration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/declaration.html -------------------------------------------------------------------------------- /layouts/partials/templates/ecoconception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/ecoconception.html -------------------------------------------------------------------------------- /layouts/partials/templates/greenit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/greenit.html -------------------------------------------------------------------------------- /layouts/partials/templates/performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/performance.html -------------------------------------------------------------------------------- /layouts/partials/templates/projects-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/projects-list.html -------------------------------------------------------------------------------- /layouts/partials/templates/projects-monitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/projects-monitoring.html -------------------------------------------------------------------------------- /layouts/partials/templates/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/projects.html -------------------------------------------------------------------------------- /layouts/partials/templates/recommendation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/recommendation.html -------------------------------------------------------------------------------- /layouts/partials/templates/schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/schema.html -------------------------------------------------------------------------------- /layouts/partials/templates/validity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/templates/validity.html -------------------------------------------------------------------------------- /layouts/partials/utils/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/utils/css.html -------------------------------------------------------------------------------- /layouts/partials/utils/isURL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/partials/utils/isURL.html -------------------------------------------------------------------------------- /layouts/performance/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/performance/single.html -------------------------------------------------------------------------------- /layouts/personas/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/personas/list.html -------------------------------------------------------------------------------- /layouts/personas/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/personas/single.html -------------------------------------------------------------------------------- /layouts/pidila/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/pidila/single.html -------------------------------------------------------------------------------- /layouts/plans/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/plans/single.html -------------------------------------------------------------------------------- /layouts/post/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/post/single.html -------------------------------------------------------------------------------- /layouts/projects/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/projects/single.html -------------------------------------------------------------------------------- /layouts/quality/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/quality/single.html -------------------------------------------------------------------------------- /layouts/rgaa/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/rgaa/single.html -------------------------------------------------------------------------------- /layouts/rgesn/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/rgesn/single.html -------------------------------------------------------------------------------- /layouts/schemas/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/schemas/single.html -------------------------------------------------------------------------------- /layouts/shortcodes/backlinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/shortcodes/backlinks.html -------------------------------------------------------------------------------- /layouts/shortcodes/benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/shortcodes/benchmark.html -------------------------------------------------------------------------------- /layouts/shortcodes/graphic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/shortcodes/graphic.html -------------------------------------------------------------------------------- /layouts/shortcodes/list-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/shortcodes/list-content.html -------------------------------------------------------------------------------- /layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /layouts/shortcodes/mermaidmeetings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/shortcodes/mermaidmeetings.html -------------------------------------------------------------------------------- /layouts/shortcodes/parcours.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/shortcodes/parcours.html -------------------------------------------------------------------------------- /layouts/shortcodes/personas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/shortcodes/personas.html -------------------------------------------------------------------------------- /layouts/shortcodes/similary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/shortcodes/similary.html -------------------------------------------------------------------------------- /layouts/simple/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/simple/single.html -------------------------------------------------------------------------------- /layouts/sitemap/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/sitemap/single.html -------------------------------------------------------------------------------- /layouts/styleguide/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/styleguide/list.html -------------------------------------------------------------------------------- /layouts/usertests/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/layouts/usertests/single.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/postcss.config.js -------------------------------------------------------------------------------- /static/assets/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/css/fonts.css -------------------------------------------------------------------------------- /static/assets/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/assets/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/assets/favicons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/android-icon-144x144.png -------------------------------------------------------------------------------- /static/assets/favicons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/android-icon-192x192.png -------------------------------------------------------------------------------- /static/assets/favicons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/android-icon-36x36.png -------------------------------------------------------------------------------- /static/assets/favicons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/android-icon-48x48.png -------------------------------------------------------------------------------- /static/assets/favicons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/android-icon-72x72.png -------------------------------------------------------------------------------- /static/assets/favicons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/android-icon-96x96.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon-114x114.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon-120x120.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon-144x144.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon-152x152.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon-180x180.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon-57x57.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon-60x60.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon-72x72.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon-76x76.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-icon.png -------------------------------------------------------------------------------- /static/assets/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /static/assets/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/browserconfig.xml -------------------------------------------------------------------------------- /static/assets/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /static/assets/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /static/assets/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /static/assets/favicons/favicon-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/favicon-original.png -------------------------------------------------------------------------------- /static/assets/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/favicon.ico -------------------------------------------------------------------------------- /static/assets/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/manifest.json -------------------------------------------------------------------------------- /static/assets/favicons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/ms-icon-144x144.png -------------------------------------------------------------------------------- /static/assets/favicons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/ms-icon-150x150.png -------------------------------------------------------------------------------- /static/assets/favicons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/ms-icon-310x310.png -------------------------------------------------------------------------------- /static/assets/favicons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/ms-icon-70x70.png -------------------------------------------------------------------------------- /static/assets/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/favicons/site.webmanifest -------------------------------------------------------------------------------- /static/assets/fonts/Marianne-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/fonts/Marianne-Bold.woff2 -------------------------------------------------------------------------------- /static/assets/fonts/Marianne-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/fonts/Marianne-ExtraBold.woff2 -------------------------------------------------------------------------------- /static/assets/fonts/Marianne-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/fonts/Marianne-Light.woff2 -------------------------------------------------------------------------------- /static/assets/fonts/Marianne-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/fonts/Marianne-Medium.woff2 -------------------------------------------------------------------------------- /static/assets/fonts/Marianne-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/fonts/Marianne-Regular.woff2 -------------------------------------------------------------------------------- /static/assets/fonts/Marianne-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/fonts/Marianne-Thin.woff2 -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-dechets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-dechets.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-difficulte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-difficulte.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-eau.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-eau.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-electricite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-electricite.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-gaz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-gaz.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-impact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-impact.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-potentiel-economie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-potentiel-economie.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-potentiel-environnement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-potentiel-environnement.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-potentiel-social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-potentiel-social.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-priorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-priorite.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-ressources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-ressources.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto-social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto-social.svg -------------------------------------------------------------------------------- /static/assets/images/greenit/picto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/greenit/picto.svg -------------------------------------------------------------------------------- /static/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/logo.svg -------------------------------------------------------------------------------- /static/assets/images/logodark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/assets/images/logodark.svg -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/static/sw.js -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/theme.toml -------------------------------------------------------------------------------- /themes/documentago/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/themes/documentago/layouts/_default/list.html -------------------------------------------------------------------------------- /themes/frago/layouts/partials/elements/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/frago/HEAD/themes/frago/layouts/partials/elements/content.html --------------------------------------------------------------------------------