├── .gitignore ├── .rspec ├── .ruby-version ├── .travis.yml ├── .travis ├── README.md └── secrets.tar.enc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENCE.txt ├── README.md ├── Rakefile ├── config.sh ├── docs ├── changing_icons.md ├── development.md ├── packaging.md ├── publishing.md ├── template-blocks.md ├── usage.md └── using-with-rails.md ├── govuk_template.gemspec ├── integration_tests ├── README.md ├── html_for_testing │ └── .gitkeep ├── html_rendered_by_each_integration_testing_app_spec.rb └── integrations │ ├── django │ ├── .gitignore │ ├── build.py │ ├── build.sh │ └── templates │ │ └── test_template.html │ ├── jinja │ ├── .gitignore │ ├── build.py │ ├── build.sh │ └── templates │ │ └── test_template.html │ ├── mustache │ ├── Gemfile │ ├── Gemfile.lock │ ├── build.sh │ ├── test_render.rb │ └── vendor │ │ └── .gitignore │ ├── mustache_inheritance │ ├── .gitignore │ ├── build.js │ ├── build.sh │ ├── package.json │ └── vendor │ │ └── .gitignore │ ├── nunjucks │ ├── .gitignore │ ├── build.js │ ├── build.sh │ ├── package.json │ └── templates │ │ └── test_template.html │ └── rails │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── build.sh │ ├── simplicity.rb │ └── views │ └── show.html.erb ├── lib ├── govuk_template.rb └── govuk_template │ ├── engine.rb │ └── version.rb ├── manifests.yml ├── source ├── assets │ ├── images │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-167x167.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ ├── gov.uk_logotype_crown.svg │ │ ├── gov.uk_logotype_crown_invert.png │ │ ├── gov.uk_logotype_crown_invert_trans.png │ │ └── opengraph-image.png │ ├── javascripts │ │ ├── cookie-bar.js │ │ ├── cookie-functions.js │ │ ├── core.js │ │ ├── govuk-template.js │ │ ├── ie.js │ │ └── vendor │ │ │ ├── html5shiv-printshiv.js │ │ │ └── json2.js │ └── stylesheets │ │ ├── _accessibility.scss │ │ ├── _basic.scss │ │ ├── _core-print.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── fonts.css.erb │ │ ├── fonts │ │ ├── README.md │ │ ├── v1-2c037cf7e1-light.eot │ │ ├── v1-357fdfbcc3-tabular-bold.eot │ │ ├── v1-458f8ea81c-light.woff │ │ ├── v1-498ea8ffe2-tabular-light.eot │ │ ├── v1-62cc6f0a28-tabular-light.woff │ │ ├── v1-784c21afb8-tabular-bold.woff │ │ ├── v1-851b10ccdd-tabular-light.woff2 │ │ ├── v1-a2452cb66f-bold.woff2 │ │ ├── v1-b89238d840-tabular-bold.woff2 │ │ ├── v1-f38ad40456-light.woff2 │ │ ├── v1-f38c792ac2-bold.woff │ │ └── v1-fb2676462a-bold.eot │ │ ├── govuk-template-ie6.scss │ │ ├── govuk-template-ie7.scss │ │ ├── govuk-template-ie8.scss │ │ ├── govuk-template-print.scss │ │ ├── govuk-template.scss │ │ ├── images │ │ ├── close.png │ │ ├── gov.uk_logotype_crown-1x.png │ │ ├── gov.uk_logotype_crown.png │ │ ├── govuk-crest-2x.png │ │ ├── govuk-crest-ie.png │ │ ├── govuk-crest.png │ │ ├── open-government-licence.png │ │ └── open-government-licence_2x.png │ │ └── styleguide │ │ ├── _colours.scss │ │ └── _print.scss ├── django │ ├── MANIFEST.in │ └── setup.py.erb ├── package.json.erb └── views │ └── layouts │ └── govuk_template.html.erb └── spec ├── build_tools ├── compiler │ ├── all_compilers_spec.rb │ ├── django_processor_spec.rb │ ├── ejs_processor_spec.rb │ ├── jinja_processor_spec.rb │ ├── liquid_processor_spec.rb │ ├── mustache_inheritance_processor_spec.rb │ ├── mustache_processor_spec.rb │ ├── plain_processor_spec.rb │ └── play_processor_spec.rb └── packager │ ├── django_packager_spec.rb │ ├── ejs_packager_spec.rb │ ├── jinja_packager_spec.rb │ ├── mustache_packager_spec.rb │ └── webjar_packager_spec.rb ├── spec_helper.rb ├── stylesheets_spec.rb └── support ├── examples ├── package.json ├── package_ejs.json └── processor.rb ├── files_helper.rb └── uses_of_yield.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/.travis/README.md -------------------------------------------------------------------------------- /.travis/secrets.tar.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/.travis/secrets.tar.enc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/Rakefile -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/config.sh -------------------------------------------------------------------------------- /docs/changing_icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/docs/changing_icons.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/docs/packaging.md -------------------------------------------------------------------------------- /docs/publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/docs/publishing.md -------------------------------------------------------------------------------- /docs/template-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/docs/template-blocks.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/using-with-rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/docs/using-with-rails.md -------------------------------------------------------------------------------- /govuk_template.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/govuk_template.gemspec -------------------------------------------------------------------------------- /integration_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/README.md -------------------------------------------------------------------------------- /integration_tests/html_for_testing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration_tests/html_rendered_by_each_integration_testing_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/html_rendered_by_each_integration_testing_app_spec.rb -------------------------------------------------------------------------------- /integration_tests/integrations/django/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | vendor/* 3 | -------------------------------------------------------------------------------- /integration_tests/integrations/django/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/django/build.py -------------------------------------------------------------------------------- /integration_tests/integrations/django/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/django/build.sh -------------------------------------------------------------------------------- /integration_tests/integrations/django/templates/test_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/django/templates/test_template.html -------------------------------------------------------------------------------- /integration_tests/integrations/jinja/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | .env 3 | -------------------------------------------------------------------------------- /integration_tests/integrations/jinja/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/jinja/build.py -------------------------------------------------------------------------------- /integration_tests/integrations/jinja/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/jinja/build.sh -------------------------------------------------------------------------------- /integration_tests/integrations/jinja/templates/test_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/jinja/templates/test_template.html -------------------------------------------------------------------------------- /integration_tests/integrations/mustache/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "mustache", "1.0.1" 4 | -------------------------------------------------------------------------------- /integration_tests/integrations/mustache/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/mustache/Gemfile.lock -------------------------------------------------------------------------------- /integration_tests/integrations/mustache/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/mustache/build.sh -------------------------------------------------------------------------------- /integration_tests/integrations/mustache/test_render.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/mustache/test_render.rb -------------------------------------------------------------------------------- /integration_tests/integrations/mustache/vendor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/mustache/vendor/.gitignore -------------------------------------------------------------------------------- /integration_tests/integrations/mustache_inheritance/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | node_modules 3 | 4 | -------------------------------------------------------------------------------- /integration_tests/integrations/mustache_inheritance/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/mustache_inheritance/build.js -------------------------------------------------------------------------------- /integration_tests/integrations/mustache_inheritance/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/mustache_inheritance/build.sh -------------------------------------------------------------------------------- /integration_tests/integrations/mustache_inheritance/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/mustache_inheritance/package.json -------------------------------------------------------------------------------- /integration_tests/integrations/mustache_inheritance/vendor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/mustache_inheritance/vendor/.gitignore -------------------------------------------------------------------------------- /integration_tests/integrations/nunjucks/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | vendor/* 3 | -------------------------------------------------------------------------------- /integration_tests/integrations/nunjucks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/nunjucks/build.js -------------------------------------------------------------------------------- /integration_tests/integrations/nunjucks/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/nunjucks/build.sh -------------------------------------------------------------------------------- /integration_tests/integrations/nunjucks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/nunjucks/package.json -------------------------------------------------------------------------------- /integration_tests/integrations/nunjucks/templates/test_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/nunjucks/templates/test_template.html -------------------------------------------------------------------------------- /integration_tests/integrations/rails/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/bundle 2 | -------------------------------------------------------------------------------- /integration_tests/integrations/rails/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "actionpack", "4.2.1" 4 | -------------------------------------------------------------------------------- /integration_tests/integrations/rails/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/rails/Gemfile.lock -------------------------------------------------------------------------------- /integration_tests/integrations/rails/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/rails/build.sh -------------------------------------------------------------------------------- /integration_tests/integrations/rails/simplicity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/rails/simplicity.rb -------------------------------------------------------------------------------- /integration_tests/integrations/rails/views/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/integration_tests/integrations/rails/views/show.html.erb -------------------------------------------------------------------------------- /lib/govuk_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/lib/govuk_template.rb -------------------------------------------------------------------------------- /lib/govuk_template/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/lib/govuk_template/engine.rb -------------------------------------------------------------------------------- /lib/govuk_template/version.rb: -------------------------------------------------------------------------------- 1 | module GovukTemplate 2 | VERSION = "0.26.0" 3 | end 4 | -------------------------------------------------------------------------------- /manifests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/manifests.yml -------------------------------------------------------------------------------- /source/assets/images/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/images/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /source/assets/images/apple-touch-icon-167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/images/apple-touch-icon-167x167.png -------------------------------------------------------------------------------- /source/assets/images/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/images/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /source/assets/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/images/apple-touch-icon.png -------------------------------------------------------------------------------- /source/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/images/favicon.ico -------------------------------------------------------------------------------- /source/assets/images/gov.uk_logotype_crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/images/gov.uk_logotype_crown.svg -------------------------------------------------------------------------------- /source/assets/images/gov.uk_logotype_crown_invert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/images/gov.uk_logotype_crown_invert.png -------------------------------------------------------------------------------- /source/assets/images/gov.uk_logotype_crown_invert_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/images/gov.uk_logotype_crown_invert_trans.png -------------------------------------------------------------------------------- /source/assets/images/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/images/opengraph-image.png -------------------------------------------------------------------------------- /source/assets/javascripts/cookie-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/javascripts/cookie-bar.js -------------------------------------------------------------------------------- /source/assets/javascripts/cookie-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/javascripts/cookie-functions.js -------------------------------------------------------------------------------- /source/assets/javascripts/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/javascripts/core.js -------------------------------------------------------------------------------- /source/assets/javascripts/govuk-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/javascripts/govuk-template.js -------------------------------------------------------------------------------- /source/assets/javascripts/ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/javascripts/ie.js -------------------------------------------------------------------------------- /source/assets/javascripts/vendor/html5shiv-printshiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/javascripts/vendor/html5shiv-printshiv.js -------------------------------------------------------------------------------- /source/assets/javascripts/vendor/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/javascripts/vendor/json2.js -------------------------------------------------------------------------------- /source/assets/stylesheets/_accessibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/_accessibility.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/_basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/_basic.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/_core-print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/_core-print.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/_footer.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/_header.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts.css.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts.css.erb -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/README.md -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-2c037cf7e1-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-2c037cf7e1-light.eot -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-357fdfbcc3-tabular-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-357fdfbcc3-tabular-bold.eot -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-458f8ea81c-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-458f8ea81c-light.woff -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-498ea8ffe2-tabular-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-498ea8ffe2-tabular-light.eot -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-62cc6f0a28-tabular-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-62cc6f0a28-tabular-light.woff -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-784c21afb8-tabular-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-784c21afb8-tabular-bold.woff -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-851b10ccdd-tabular-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-851b10ccdd-tabular-light.woff2 -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-a2452cb66f-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-a2452cb66f-bold.woff2 -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-b89238d840-tabular-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-b89238d840-tabular-bold.woff2 -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-f38ad40456-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-f38ad40456-light.woff2 -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-f38c792ac2-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-f38c792ac2-bold.woff -------------------------------------------------------------------------------- /source/assets/stylesheets/fonts/v1-fb2676462a-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/fonts/v1-fb2676462a-bold.eot -------------------------------------------------------------------------------- /source/assets/stylesheets/govuk-template-ie6.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/govuk-template-ie6.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/govuk-template-ie7.scss: -------------------------------------------------------------------------------- 1 | $is-ie: true; 2 | $ie-version: 7; 3 | 4 | @import "govuk-template"; 5 | -------------------------------------------------------------------------------- /source/assets/stylesheets/govuk-template-ie8.scss: -------------------------------------------------------------------------------- 1 | $is-ie: true; 2 | $ie-version: 8; 3 | 4 | @import "govuk-template"; 5 | -------------------------------------------------------------------------------- /source/assets/stylesheets/govuk-template-print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/govuk-template-print.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/govuk-template.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/govuk-template.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/images/close.png -------------------------------------------------------------------------------- /source/assets/stylesheets/images/gov.uk_logotype_crown-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/images/gov.uk_logotype_crown-1x.png -------------------------------------------------------------------------------- /source/assets/stylesheets/images/gov.uk_logotype_crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/images/gov.uk_logotype_crown.png -------------------------------------------------------------------------------- /source/assets/stylesheets/images/govuk-crest-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/images/govuk-crest-2x.png -------------------------------------------------------------------------------- /source/assets/stylesheets/images/govuk-crest-ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/images/govuk-crest-ie.png -------------------------------------------------------------------------------- /source/assets/stylesheets/images/govuk-crest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/images/govuk-crest.png -------------------------------------------------------------------------------- /source/assets/stylesheets/images/open-government-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/images/open-government-licence.png -------------------------------------------------------------------------------- /source/assets/stylesheets/images/open-government-licence_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/images/open-government-licence_2x.png -------------------------------------------------------------------------------- /source/assets/stylesheets/styleguide/_colours.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/styleguide/_colours.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/styleguide/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/assets/stylesheets/styleguide/_print.scss -------------------------------------------------------------------------------- /source/django/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/django/MANIFEST.in -------------------------------------------------------------------------------- /source/django/setup.py.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/django/setup.py.erb -------------------------------------------------------------------------------- /source/package.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/package.json.erb -------------------------------------------------------------------------------- /source/views/layouts/govuk_template.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/source/views/layouts/govuk_template.html.erb -------------------------------------------------------------------------------- /spec/build_tools/compiler/all_compilers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/compiler/all_compilers_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/compiler/django_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/compiler/django_processor_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/compiler/ejs_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/compiler/ejs_processor_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/compiler/jinja_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/compiler/jinja_processor_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/compiler/liquid_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/compiler/liquid_processor_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/compiler/mustache_inheritance_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/compiler/mustache_inheritance_processor_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/compiler/mustache_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/compiler/mustache_processor_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/compiler/plain_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/compiler/plain_processor_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/compiler/play_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/compiler/play_processor_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/packager/django_packager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/packager/django_packager_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/packager/ejs_packager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/packager/ejs_packager_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/packager/jinja_packager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/packager/jinja_packager_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/packager/mustache_packager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/packager/mustache_packager_spec.rb -------------------------------------------------------------------------------- /spec/build_tools/packager/webjar_packager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/build_tools/packager/webjar_packager_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/stylesheets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/stylesheets_spec.rb -------------------------------------------------------------------------------- /spec/support/examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/support/examples/package.json -------------------------------------------------------------------------------- /spec/support/examples/package_ejs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/support/examples/package_ejs.json -------------------------------------------------------------------------------- /spec/support/examples/processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/support/examples/processor.rb -------------------------------------------------------------------------------- /spec/support/files_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/support/files_helper.rb -------------------------------------------------------------------------------- /spec/support/uses_of_yield.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk_template/HEAD/spec/support/uses_of_yield.rb --------------------------------------------------------------------------------