├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ └── deploy.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .tool-versions ├── LICENSE.txt ├── Procfile ├── README.md ├── app ├── _components │ ├── _index.scss │ ├── email │ │ ├── _index.scss │ │ ├── macro.njk │ │ └── template.njk │ └── screenshots │ │ ├── _index.scss │ │ ├── macro.njk │ │ └── template.njk ├── _layouts │ ├── page.njk │ ├── post.njk │ └── product.njk ├── images │ ├── .gitkeep │ └── example-post │ │ ├── 01-design-history-index.png │ │ ├── 02-search-results.png │ │ └── 03-a-design-history-post.png ├── index.md ├── posts │ ├── 2019-12-31-example-post.md │ └── posts.json ├── robots.njk └── styles │ └── application.scss ├── eleventy.config.js ├── netlify.toml ├── package.json └── scripts ├── generate.js └── screenshot.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Folders to ignore 2 | node_modules 3 | _site 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | audit=false 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 20.15.1 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm run serve 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/README.md -------------------------------------------------------------------------------- /app/_components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/_components/_index.scss -------------------------------------------------------------------------------- /app/_components/email/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/_components/email/_index.scss -------------------------------------------------------------------------------- /app/_components/email/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/_components/email/macro.njk -------------------------------------------------------------------------------- /app/_components/email/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/_components/email/template.njk -------------------------------------------------------------------------------- /app/_components/screenshots/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/_components/screenshots/_index.scss -------------------------------------------------------------------------------- /app/_components/screenshots/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/_components/screenshots/macro.njk -------------------------------------------------------------------------------- /app/_components/screenshots/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/_components/screenshots/template.njk -------------------------------------------------------------------------------- /app/_layouts/page.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/_layouts/page.njk -------------------------------------------------------------------------------- /app/_layouts/post.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/_layouts/post.njk -------------------------------------------------------------------------------- /app/_layouts/product.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/_layouts/product.njk -------------------------------------------------------------------------------- /app/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/example-post/01-design-history-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/images/example-post/01-design-history-index.png -------------------------------------------------------------------------------- /app/images/example-post/02-search-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/images/example-post/02-search-results.png -------------------------------------------------------------------------------- /app/images/example-post/03-a-design-history-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/images/example-post/03-a-design-history-post.png -------------------------------------------------------------------------------- /app/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/index.md -------------------------------------------------------------------------------- /app/posts/2019-12-31-example-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/posts/2019-12-31-example-post.md -------------------------------------------------------------------------------- /app/posts/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/posts/posts.json -------------------------------------------------------------------------------- /app/robots.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/robots.njk -------------------------------------------------------------------------------- /app/styles/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/app/styles/application.scss -------------------------------------------------------------------------------- /eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/eleventy.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/package.json -------------------------------------------------------------------------------- /scripts/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/scripts/generate.js -------------------------------------------------------------------------------- /scripts/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x-govuk/govuk-design-history-template/HEAD/scripts/screenshot.js --------------------------------------------------------------------------------