├── .ruby-version ├── .bundler-version ├── Staticfile ├── .asdfrc ├── pages.json ├── assets ├── js │ ├── custom.js │ └── README.md ├── css │ └── README.md └── img │ ├── README.md │ ├── SDG_logo.png │ └── favicons │ ├── favicon.ico │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── apple-touch-icon.png │ ├── android-chrome-192x192.png │ └── android-chrome-512x512.png ├── _posts └── README.md ├── _includes ├── README.md ├── head-custom.html ├── scripts-custom.html ├── components │ ├── uswds_alert.html │ ├── indicator │ │ ├── metadata-tabs.html │ │ └── metadata-panes.html │ └── uswds_banner.html ├── header.html └── head.html ├── _layouts ├── README.md └── data-editor.html ├── _sass ├── styles.scss ├── custom.scss ├── _uswds-theme.scss ├── variables.scss └── _uswds-theme-custom-styles.scss ├── _pages ├── fr │ ├── about.md │ ├── contact-us.md │ ├── cookies.md │ └── sdg-data-platforms-in-other-countries.md ├── es │ ├── about.md │ ├── contact-us.md │ ├── cookies.md │ └── sdg-data-platforms-in-other-countries.md ├── 404.md ├── about.md ├── contact-us.md ├── cookies.md └── sdg-data-platforms-in-other-countries.md ├── scripts ├── test │ ├── html_proofer_prod.sh │ └── html_proofer_staging.sh └── batch │ └── add_language.py ├── Gemfile ├── _config_prod.yml ├── .github ├── workflows │ ├── qa.yml │ └── build.yml └── dependabot.yml ├── .gitignore ├── .editorconfig ├── .snyk ├── package.json ├── gulpfile.js ├── _data ├── site_config_prod.yml └── site_config.yml ├── _config.yml ├── LICENSE ├── SECURITY.md ├── README.md └── Gemfile.lock /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /.bundler-version: -------------------------------------------------------------------------------- 1 | 2.4.2 2 | -------------------------------------------------------------------------------- /Staticfile: -------------------------------------------------------------------------------- 1 | root: _site 2 | -------------------------------------------------------------------------------- /.asdfrc: -------------------------------------------------------------------------------- 1 | legacy_version_file = yes 2 | -------------------------------------------------------------------------------- /pages.json: -------------------------------------------------------------------------------- 1 | { 2 | "cache": false 3 | } 4 | -------------------------------------------------------------------------------- /assets/js/custom.js: -------------------------------------------------------------------------------- 1 | // Add any custom javascript here. 2 | -------------------------------------------------------------------------------- /_posts/README.md: -------------------------------------------------------------------------------- 1 | Enter any news articles or blog posts in this folder. 2 | -------------------------------------------------------------------------------- /_includes/README.md: -------------------------------------------------------------------------------- 1 | Add here any overrides of the "_includes" folder in the Jekyll theme. 2 | -------------------------------------------------------------------------------- /_layouts/README.md: -------------------------------------------------------------------------------- 1 | Add here any overrides of the "_layouts" folder in the Jekyll theme. 2 | -------------------------------------------------------------------------------- /assets/css/README.md: -------------------------------------------------------------------------------- 1 | Override any CSS from the Jekyll theme in this folder, or add your own. 2 | -------------------------------------------------------------------------------- /_includes/head-custom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/scripts-custom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/README.md: -------------------------------------------------------------------------------- 1 | Override any javascript from the Jekyll theme in this folder, or add your own. 2 | -------------------------------------------------------------------------------- /assets/img/README.md: -------------------------------------------------------------------------------- 1 | Override any images from the Jekyll theme in this folder, such as SDG_logo.png. 2 | -------------------------------------------------------------------------------- /assets/img/SDG_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/sdg-indicators-usa/HEAD/assets/img/SDG_logo.png -------------------------------------------------------------------------------- /_sass/styles.scss: -------------------------------------------------------------------------------- 1 | @forward "uswds-theme"; 2 | @forward "uswds"; 3 | @forward "uswds-theme-custom-styles"; 4 | -------------------------------------------------------------------------------- /assets/img/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/sdg-indicators-usa/HEAD/assets/img/favicons/favicon.ico -------------------------------------------------------------------------------- /assets/img/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/sdg-indicators-usa/HEAD/assets/img/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /assets/img/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/sdg-indicators-usa/HEAD/assets/img/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /_pages/fr/about.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: About 3 | language: fr 4 | permalink: /fr/about/ 5 | layout: page 6 | --- 7 | Translation needed 8 | -------------------------------------------------------------------------------- /assets/img/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/sdg-indicators-usa/HEAD/assets/img/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /_pages/es/about.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: About 3 | permalink: /es/about/ 4 | layout: page 5 | language: es 6 | --- 7 | 8 | Translation needed. 9 | -------------------------------------------------------------------------------- /_sass/custom.scss: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 10px; 3 | } 4 | .usa-banner { 5 | padding-top: 5px; 6 | padding-bottom: 5px; 7 | } 8 | -------------------------------------------------------------------------------- /_pages/fr/contact-us.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Contact us 4 | language: fr 5 | permalink: /fr/contact-us/ 6 | --- 7 | Translation needed 8 | -------------------------------------------------------------------------------- /assets/img/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/sdg-indicators-usa/HEAD/assets/img/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /assets/img/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/sdg-indicators-usa/HEAD/assets/img/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /_pages/es/contact-us.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Contact us 4 | permalink: /es/contact-us/ 5 | language: es 6 | --- 7 | 8 | Translation needed. 9 | -------------------------------------------------------------------------------- /_pages/fr/cookies.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Cookies and privacy 4 | language: fr 5 | permalink: /fr/about/cookies-and-privacy/ 6 | --- 7 | Translation needed 8 | -------------------------------------------------------------------------------- /_pages/es/cookies.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Cookies and privacy 4 | permalink: /es/about/cookies-and-privacy/ 5 | language: es 6 | --- 7 | 8 | Translation needed. 9 | -------------------------------------------------------------------------------- /scripts/test/html_proofer_prod.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # The following assumes the site is already built at _site. 4 | bundle exec htmlproofer --allow-hash-href --disable-external ./_site 5 | -------------------------------------------------------------------------------- /_pages/fr/sdg-data-platforms-in-other-countries.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SDG Data Platforms in Other Countries 3 | language: fr 4 | permalink: /fr/sdg-data-platforms-in-other-countries/ 5 | layout: page 6 | --- 7 | Translation needed. 8 | -------------------------------------------------------------------------------- /_pages/es/sdg-data-platforms-in-other-countries.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SDG Data Platforms in Other Countries 3 | permalink: /es/sdg-data-platforms-in-other-countries/ 4 | layout: page 5 | language: es 6 | --- 7 | 8 | Translation needed. 9 | -------------------------------------------------------------------------------- /_includes/components/uswds_alert.html: -------------------------------------------------------------------------------- 1 |