pugin 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +0 -0
  3. data/README.md +102 -0
  4. data/Rakefile +35 -0
  5. data/app/assets/config/pugin_manifest.js +2 -0
  6. data/app/assets/images/pugin/favicon.ico +0 -0
  7. data/app/assets/images/pugin/parliament-uk--darkgrey.png +0 -0
  8. data/app/assets/images/pugin/parliament-uk--darkgrey.svg +1 -0
  9. data/app/assets/images/pugin/parliament-uk--white-25.png +0 -0
  10. data/app/assets/images/pugin/parliament-uk--white-25.svg +1 -0
  11. data/app/assets/images/pugin/parliament-uk--white-50.png +0 -0
  12. data/app/assets/images/pugin/parliament-uk--white-50.svg +1 -0
  13. data/app/assets/images/pugin/parliament-uk-portcullis-black.png +0 -0
  14. data/app/assets/images/pugin/parliament-uk-portcullis-black.svg +1 -0
  15. data/app/assets/images/pugin/sprites-arrows.png +0 -0
  16. data/app/assets/images/pugin/sprites-arrows.svg +1 -0
  17. data/app/assets/javascripts/pugin/compiled/main.js +1 -0
  18. data/app/assets/javascripts/pugin/pugin.js +13 -0
  19. data/app/assets/stylesheets/pugin/compiled/main.css +1 -0
  20. data/app/assets/stylesheets/pugin/overrides/asset_overrides.css.erb +0 -0
  21. data/app/assets/stylesheets/pugin/pugin.css +16 -0
  22. data/app/views/pugin/cards/_person-list.html.haml +16 -0
  23. data/app/views/pugin/components/_footer.html.haml +16 -0
  24. data/app/views/pugin/components/_header.html.haml +7 -0
  25. data/app/views/pugin/components/_status.html.haml +6 -0
  26. data/app/views/pugin/javascript/_google_tag_manager.html.haml +5 -0
  27. data/app/views/pugin/javascript/_google_tag_manager_noscript.html.haml +2 -0
  28. data/app/views/pugin/layouts/pugin.html.haml +23 -0
  29. data/config/application.rb +0 -0
  30. data/config/routes.rb +2 -0
  31. data/lib/pugin.rb +5 -0
  32. data/lib/pugin/engine.rb +17 -0
  33. data/lib/pugin/version.rb +3 -0
  34. data/lib/tasks/pugin_tasks.rake +4 -0
  35. data/spec/dummy/Rakefile +6 -0
  36. data/spec/dummy/app/assets/config/manifest.js +5 -0
  37. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  38. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  39. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  40. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  41. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  42. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  43. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  44. data/spec/dummy/app/jobs/application_job.rb +2 -0
  45. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  46. data/spec/dummy/app/models/application_record.rb +3 -0
  47. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  48. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  49. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  50. data/spec/dummy/bin/bundle +3 -0
  51. data/spec/dummy/bin/rails +4 -0
  52. data/spec/dummy/bin/rake +4 -0
  53. data/spec/dummy/bin/setup +34 -0
  54. data/spec/dummy/bin/update +29 -0
  55. data/spec/dummy/config.ru +5 -0
  56. data/spec/dummy/config/application.rb +23 -0
  57. data/spec/dummy/config/boot.rb +5 -0
  58. data/spec/dummy/config/cable.yml +9 -0
  59. data/spec/dummy/config/database.yml +25 -0
  60. data/spec/dummy/config/environment.rb +5 -0
  61. data/spec/dummy/config/environments/development.rb +54 -0
  62. data/spec/dummy/config/environments/production.rb +86 -0
  63. data/spec/dummy/config/environments/test.rb +42 -0
  64. data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  65. data/spec/dummy/config/initializers/assets.rb +11 -0
  66. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  67. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  68. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  69. data/spec/dummy/config/initializers/inflections.rb +16 -0
  70. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  71. data/spec/dummy/config/initializers/new_framework_defaults.rb +24 -0
  72. data/spec/dummy/config/initializers/session_store.rb +3 -0
  73. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  74. data/spec/dummy/config/locales/en.yml +23 -0
  75. data/spec/dummy/config/puma.rb +47 -0
  76. data/spec/dummy/config/routes.rb +3 -0
  77. data/spec/dummy/config/secrets.yml +22 -0
  78. data/spec/dummy/config/spring.rb +6 -0
  79. data/spec/dummy/db/schema.rb +15 -0
  80. data/spec/dummy/public/404.html +67 -0
  81. data/spec/dummy/public/422.html +67 -0
  82. data/spec/dummy/public/500.html +66 -0
  83. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  84. data/spec/dummy/public/apple-touch-icon.png +0 -0
  85. data/spec/dummy/public/favicon.ico +0 -0
  86. data/spec/pugin/engine_spec.rb +17 -0
  87. data/spec/pugin_spec.rb +7 -0
  88. data/spec/spec_helper.rb +25 -0
  89. data/spec/views/pugin/cards/_person-list.html.haml_spec.rb +254 -0
  90. data/spec/views/pugin/components/_footer.html.haml_spec.rb +40 -0
  91. data/spec/views/pugin/components/_header.html.haml_spec.rb +27 -0
  92. data/spec/views/pugin/components/_status.html.haml_spec.rb +46 -0
  93. data/spec/views/pugin/layouts/pugin.html.haml_spec.rb +20 -0
  94. metadata +336 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: da4ecbf5783f861b294e469debff81bc7f186f9c
4
+ data.tar.gz: fd1f958c74c9142d7abd8aa9936b6abea71df9b1
5
+ SHA512:
6
+ metadata.gz: 87373363a1e0d76113a5a6e8639169ff7b8bcf405e555305f2d89496df6822eae5526fbea41968edef370cf283a76ab90ad4292a407d860af95981eacaec1a08
7
+ data.tar.gz: 42c5a1b19b90655563e70533760ae5a48f04519c64f9410a0ea9a3043601378875dad106c3ec8f1eb20f4b2d688f9b62f8efa4f432fdb25ed06884422ea8aa6b
data/LICENSE ADDED
File without changes
data/README.md ADDED
@@ -0,0 +1,102 @@
1
+ # Pugin
2
+ [pugin][pugin] is a component-based pattern design library created by the [Parliamentary Digital Service][pds] that holds all of the reusable partials, styles and scripts for elements of the UK Parliament's microservices. It is named after the designer [Augustus Welby Northmore Pugin][augustus-pugin], who provided designs for the interior of the Palace of Westminster.
3
+
4
+ [![Build Status][shield-travis]][info-travis] [![Test Coverage][shield-coveralls]][info-coveralls] [![License][shield-license]][info-license]
5
+
6
+ > **NOTE:** This gem is in active development and is likely to change at short notice. It is not recommended that you use this in any production environment.
7
+
8
+ ### Contents
9
+ <!-- START doctoc generated TOC please keep comment here to allow auto update -->
10
+ <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
11
+
12
+
13
+ - [Requirements](#requirements)
14
+ - [Installation](#installation)
15
+ - [Usage](#usage)
16
+ - [Example](#example)
17
+ - [Getting Started with Development](#getting-started-with-development)
18
+ - [Running the tests](#running-the-tests)
19
+ - [Contributing](#contributing)
20
+ - [License](#license)
21
+
22
+ <!-- END doctoc generated TOC please keep comment here to allow auto update -->
23
+
24
+
25
+ ## Requirements
26
+ [pugin][pugin] requires the following:
27
+ * [Ruby][ruby] - [click here][ruby-version] for the exact version
28
+ * [Bundler][bundler]
29
+ * [Rails][rails]
30
+ * [HAML][haml]
31
+
32
+
33
+ ## Installation
34
+ Within your rails application, add the below to your `Gemfile`.
35
+ ```bash
36
+ gem 'pugin', '~> 0.2'
37
+ ```
38
+
39
+
40
+ ## Usage
41
+ This gem's main function is to expose front-end components and assets to the host application's asset pipeline.
42
+
43
+ Once you add the gem to your `Gemfile` run:
44
+ ```bash
45
+ bundle install
46
+ ```
47
+
48
+ Now all of the view components should be available within your host application.
49
+
50
+ ### Example
51
+ ```erb
52
+ <%= render 'pugin/components/status' %>
53
+ ```
54
+
55
+
56
+ ## Getting Started with Development
57
+ To clone the repository and set up the dependencies, run the following:
58
+ ```bash
59
+ git clone https://github.com/ukparliament/pugin.git
60
+ cd pugin
61
+ bundle install
62
+ ```
63
+
64
+ ### Running the tests
65
+ We use [RSpec][rspec] as our testing framework and tests can be run using:
66
+ ```bash
67
+ bundle exec rake
68
+ ```
69
+
70
+
71
+ ## Contributing
72
+ If you wish to submit a bug fix or feature, you can create a pull request and it will be merged pending a code review.
73
+
74
+ 1. Fork the repository
75
+ 1. Create your feature branch (`git checkout -b my-new-feature`)
76
+ 1. Commit your changes (`git commit -am 'Add some feature'`)
77
+ 1. Push to the branch (`git push origin my-new-feature`)
78
+ 1. Ensure your changes are tested using [Rspec][rspec]
79
+ 1. Create a new Pull Request
80
+
81
+
82
+ ## License
83
+ [pugin][pugin] is licensed under the [Open Parliament Licence][info-license].
84
+
85
+ [ruby]: https://www.ruby-lang.org/en/
86
+ [bundler]: http://bundler.io
87
+ [rspec]: http://rspec.info
88
+ [pugin]: https://github.com/ukparliament/pugin
89
+ [pds]: https://www.parliament.uk/mps-lords-and-offices/offices/bicameral/parliamentary-digital-service/
90
+ [ruby-version]: https://github.com/ukparliament/pugin/blob/master/.ruby-version
91
+ [rails]: http://rubyonrails.org
92
+ [haml]: http://haml.info
93
+ [augustus-pugin]: https://en.wikipedia.org/wiki/Augustus_Pugin
94
+
95
+ [info-travis]: https://travis-ci.org/ukparliament/pugin
96
+ [shield-travis]: https://img.shields.io/travis/ukparliament/pugin.svg
97
+
98
+ [info-coveralls]: https://coveralls.io/github/ukparliament/pugin
99
+ [shield-coveralls]: https://img.shields.io/coveralls/ukparliament/pugin.svg
100
+
101
+ [info-license]: http://www.parliament.uk/site-information/copyright/open-parliament-licence/
102
+ [shield-license]: https://img.shields.io/badge/license-Open%20Parliament%20Licence-blue.svg
data/Rakefile ADDED
@@ -0,0 +1,35 @@
1
+ #!/usr/bin/env rake
2
+ require 'bundler/gem_tasks'
3
+
4
+ begin
5
+ require 'bundler/setup'
6
+ rescue LoadError
7
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
8
+ end
9
+
10
+ require 'rdoc/task'
11
+
12
+ RDoc::Task.new(:rdoc) do |rdoc|
13
+ rdoc.rdoc_dir = 'rdoc'
14
+ rdoc.title = 'Pugin'
15
+ rdoc.options << '--line-numbers'
16
+ rdoc.rdoc_files.include('README.md')
17
+ rdoc.rdoc_files.include('lib/**/*.rb')
18
+ end
19
+
20
+ APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
21
+ load 'rails/tasks/engine.rake'
22
+
23
+ load 'rails/tasks/statistics.rake'
24
+
25
+ Bundler::GemHelper.install_tasks
26
+
27
+ Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each { |f| load f }
28
+
29
+ require 'rspec/core'
30
+ require 'rspec/core/rake_task'
31
+
32
+ desc 'Run all specs in spec directory (excluding plugin specs)'
33
+ RSpec::Core::RakeTask.new(spec: 'app:db:test:prepare')
34
+
35
+ task default: :spec
@@ -0,0 +1,2 @@
1
+ //= link_directory ../javascripts/pugin .js
2
+ //= link_directory ../stylesheets/pugin .css
Binary file
@@ -0,0 +1 @@
1
+ <svg width="118" height="22" viewBox="0 0 118 22" xmlns="http://www.w3.org/2000/svg"><title>parliament-uk--darkgrey</title><path d="M24.426 13.043c0-1.022-.04-1.847-.079-2.593h1.298l.079 1.375h.04c.59-.982 1.533-1.532 2.831-1.532 1.928 0 3.344 1.61 3.344 4.007 0 2.829-1.731 4.243-3.619 4.243-1.062 0-1.967-.472-2.439-1.257h-.039v4.321h-1.416v-8.564zm1.416 2.121c0 .197.04.393.079.59.275.982 1.14 1.689 2.163 1.689 1.534 0 2.4-1.257 2.4-3.064 0-1.572-.827-2.947-2.36-2.947-.984 0-1.889.707-2.164 1.768-.04.196-.118.393-.118.59v1.374zM39.333 16.5c0 .668.04 1.375.118 1.886h-1.298l-.118-.982h-.039c-.433.628-1.298 1.178-2.439 1.178-1.612 0-2.438-1.14-2.438-2.278 0-1.925 1.691-2.947 4.759-2.947V13.2c0-.668-.197-1.846-1.81-1.846-.747 0-1.494.235-2.045.589L33.71 11c.668-.432 1.612-.707 2.596-.707 2.438 0 3.028 1.65 3.028 3.221V16.5zm-1.416-2.16c-1.573-.04-3.343.235-3.343 1.767 0 .943.63 1.375 1.377 1.375a2.014 2.014 0 0 0 1.927-1.336c.04-.157.079-.314.079-.471l-.04-1.336zm3.737-1.415c0-.943 0-1.729-.079-2.475h1.259l.04 1.571h.078c.354-1.06 1.22-1.728 2.203-1.728.157 0 .275 0 .393.04v1.374c-.157-.04-.315-.04-.511-.04-1.023 0-1.731.787-1.928 1.847a3.488 3.488 0 0 0-.078.668v4.204h-1.416v-5.461h.039zm5.428-6.168h1.455v11.629h-1.455zM52.55 8.25c0 .51-.355.864-.905.864a.848.848 0 0 1-.866-.864.89.89 0 0 1 .905-.904c.511 0 .865.393.865.904zm-1.613 10.136V10.45h1.455v7.936h-1.455zm9.4-1.886c0 .668.04 1.375.118 1.886h-1.298l-.118-.982H59c-.433.628-1.298 1.178-2.439 1.178-1.612 0-2.438-1.14-2.438-2.278 0-1.925 1.691-2.947 4.759-2.947V13.2c0-.668-.197-1.846-1.81-1.846-.747 0-1.494.235-2.045.589L54.713 11c.668-.432 1.612-.707 2.596-.707 2.438 0 3.028 1.65 3.028 3.221V16.5zm-1.376-2.16c-1.574-.04-3.344.235-3.344 1.767 0 .943.63 1.375 1.377 1.375a2.014 2.014 0 0 0 1.927-1.336 1.97 1.97 0 0 0 .079-.471l-.04-1.336zm3.697-1.73c0-.824 0-1.492-.079-2.16h1.259l.079 1.257h.039c.433-.746 1.18-1.453 2.478-1.453 1.062 0 1.888.667 2.242 1.571h.04a3.22 3.22 0 0 1 .865-1.021c.472-.354.983-.55 1.77-.55 1.062 0 2.596.667 2.596 3.417v4.675H72.53v-4.439c0-1.532-.551-2.436-1.731-2.436-.826 0-1.455.59-1.691 1.297a2.052 2.052 0 0 0-.118.707v4.91h-1.416v-4.753c0-1.257-.551-2.16-1.652-2.16-.905 0-1.574.707-1.77 1.453a2.052 2.052 0 0 0-.118.707v4.793h-1.416v-5.814h.039zm14.475 2.083c.039 1.964 1.258 2.75 2.714 2.75a5.969 5.969 0 0 0 2.202-.393l.236 1.021c-.511.236-1.376.511-2.635.511-2.439 0-3.894-1.61-3.894-4.007 0-2.396 1.416-4.282 3.737-4.282 2.596 0 3.264 2.278 3.264 3.732 0 .314-.039.51-.039.668h-5.585zm4.208-1.022c0-.903-.393-2.357-2.006-2.357-1.455 0-2.084 1.336-2.202 2.357h4.208zm3.186-1.061c0-.824 0-1.492-.078-2.16h1.258l.079 1.296h.04c.393-.746 1.297-1.492 2.635-1.492 1.101 0 2.792.667 2.792 3.378v4.714h-1.455V13.83c0-1.258-.472-2.358-1.849-2.358-.944 0-1.691.668-1.927 1.454-.079.196-.079.432-.079.668v4.753h-1.455l.04-5.735zm10.778-4.046v1.886h2.045v1.1h-2.045v4.282c0 .982.275 1.532 1.062 1.532.393 0 .629-.039.826-.118l.078 1.061c-.275.118-.708.197-1.258.197-.669 0-1.22-.236-1.574-.629-.393-.432-.55-1.14-.55-2.043v-4.321h-1.22v-1.1h1.22V8.957l1.416-.393zm4.248 10.018c-.551 0-.944-.432-.944-1.021 0-.59.393-1.022.983-1.022s.983.432.983 1.022c-.039.55-.432 1.021-1.022 1.021zm9.4-2.357c0 .825 0 1.532.079 2.16h-1.259l-.078-1.296h-.04c-.393.629-1.219 1.454-2.635 1.454-1.259 0-2.753-.668-2.753-3.457V10.45h1.455v4.4c0 1.493.472 2.514 1.77 2.514.983 0 1.652-.668 1.888-1.296.079-.197.118-.472.118-.747V10.45h1.455v5.775zm3.816-2.121c.236-.275.511-.629.747-.904l2.32-2.75h1.731l-3.068 3.26L118 18.387h-1.77l-2.753-3.811-.748.825v2.986h-1.416V6.757h1.416v7.347h.04zM17.7 19.486v-.393h.04a.872.872 0 0 0 .865-.864v-1.297a.872.872 0 0 0-.866-.864H17.7v-.354h.04a.872.872 0 0 0 .865-.864v-1.296a.872.872 0 0 0-.866-.865H17.7v-.353h.04a.872.872 0 0 0 .865-.865v-1.296a.872.872 0 0 0-.866-.864H17.7v-.393a1.54 1.54 0 0 0 .787-.51c.157-.197.236-.472.236-.708 0-.707-.551-1.257-1.259-1.257-.511 0-.983.314-1.18.786a.547.547 0 0 0-.079.235h-.629v-.55l.59-.982L18.329 2.2s-.432-.236-.747-.393c-.157-.078-.315-.236-.433-.353l-.039-.04c-.04-.039-.079-.039-.157-.039a.269.269 0 0 0-.276.275c.079.079.158.196.236.314.158.197.276.432.315.747.079.353-.118.707-.315.785-.196.079-.629-.117-.826-.51-.157-.393-.078-.982-.354-.943-.275.04-.039.746-.196 1.257-.158.51-.512.825-.394.943s.315-.118.512-.236c.196-.118.511-.393.786-.118.236.236.079.668-.668 1.1-.433.236-.905.432-1.259.472-.275.039-.511 0-.669-.157a.76.76 0 0 1-.236-.511l.04-.04a.76.76 0 0 0 .196-.353.987.987 0 0 0-.078-.59c.118-.196.275-.51.59-.55.511-.078.747.433.747.433s.472-.825.118-1.14c-.236-.235-.983.158-1.259.315.04-.118.079-.275.118-.393a2.86 2.86 0 0 0-.078-1.729 3.074 3.074 0 0 0-.905 1.493c-.04.079-.04.197-.04.275-.196-.275-.59-.864-.904-.785-.433.117-.433 1.021-.433 1.021s.433-.314.787 0c.275.236.275.707.236.864a.669.669 0 0 0-.393.511.665.665 0 0 0 0 .393v.04c-.236.196-.669.431-1.141.431-.315 0-.55-.118-.747-.314-.236-.236-.394-.59-.512-.982v-.04c-.118-.47-.157-1.178-.157-1.178s.315-.118.708.157c0 0 .04 0 .04.04.471.353.471.785.707.785.197 0 .158-.668.197-1.14.04-.628.197-.981.197-.981.039-.04 0-.157-.079-.157-.118-.158-.157-.04-.157-.04s0 .315-.59.59c-.079.039-.118.039-.197.078-.354.079-.669-.04-.669-.04s-.157-.47.276-.942a.858.858 0 0 1 .196-.157c.118-.079.276-.157.433-.197.157-.039.315-.078.433-.078V.275c0-.157-.118-.236-.236-.275-.079 0-.158.04-.236.04-.236.039-.472.078-.669.117a4.44 4.44 0 0 1-.747.04c-.236 0-.512 0-.748-.04S8.181.08 7.985.04c-.04 0-.118-.04-.197-.04-.118.04-.236.157-.236.275v.118c.118 0 .275.04.472.118.157.039.275.118.433.196a.69.69 0 0 1 .196.157c.472.472.315.943.315.943s-.354.079-.708 0c-.079 0-.118-.04-.197-.078-.59-.275-.629-.59-.629-.59s-.04-.118-.157-.078c-.079.039-.079.118-.079.157 0 0 .157.314.197.982.039.471 0 1.14.196 1.14.236 0 .236-.433.708-.786 0 0 .04 0 .04-.04.393-.235.747-.157.747-.157s-.04.747-.197 1.179v.039c-.118.393-.275.746-.511.982a1.008 1.008 0 0 1-.747.314c-.472 0-.866-.235-1.141-.432V4.4a.669.669 0 0 0 0-.393c-.04-.236-.197-.393-.393-.51-.04-.197-.04-.63.236-.865.393-.314.786 0 .786 0s0-.903-.432-1.021c-.276-.079-.708.51-.905.785 0-.078-.04-.196-.04-.275A3.074 3.074 0 0 0 4.839.63a2.874 2.874 0 0 0-.079 1.728c.04.118.079.275.118.393-.236-.079-.944-.432-1.18-.236-.354.315.118 1.14.118 1.14s.236-.511.748-.433c.314.04.511.354.59.55a.626.626 0 0 0-.079.59.76.76 0 0 0 .197.353l.039.04c-.04.157-.118.353-.236.51-.157.157-.393.197-.669.157-.393-.039-.826-.235-1.258-.471-.787-.393-.944-.825-.708-1.06.275-.236.59 0 .786.117.197.118.394.314.512.236.118-.118-.236-.432-.394-.943-.196-.51.079-1.218-.196-1.257-.276-.04-.197.55-.354.943-.158.393-.59.55-.826.51-.197-.078-.433-.392-.354-.942.078-.275.196-.511.354-.747.078-.118.157-.196.236-.314a.269.269 0 0 0-.276-.275c-.039 0-.118 0-.157.04-.04 0-.04.038-.04.038-.157.158-.275.315-.471.393a7.727 7.727 0 0 1-.748.393l2.164 3.732.59.982v.511h-.59c0-.078-.04-.157-.079-.236a1.248 1.248 0 0 0-1.18-.785c-.708 0-1.259.55-1.259 1.257 0 .275.079.51.236.707.197.275.472.471.787.51v.394h-.04a.872.872 0 0 0-.865.864v1.296c0 .472.394.865.866.865h.039v.353h-.04a.872.872 0 0 0-.865.864v1.297c0 .471.394.864.866.864h.039v.354h-.04a.872.872 0 0 0-.865.864v1.296c0 .472.394.865.866.865h.039v.393a1.269 1.269 0 0 0-1.023 1.257c0 .707.551 1.257 1.259 1.257.708 0 1.259-.55 1.259-1.257 0-.629-.433-1.14-1.023-1.257v-.393h.04a.872.872 0 0 0 .865-.865v-1.297a.872.872 0 0 0-.866-.864v-.354h.04a.872.872 0 0 0 .865-.864v-1.297a.872.872 0 0 0-.865-.864h-.04v-.353h.04a.872.872 0 0 0 .865-.865v-1.297a.872.872 0 0 0-.865-.863h-.04V8.76c.512-.118.905-.511.984-.982h.629V20.86h.59l.59-1.415.472-1.1h-.472V16.58h1.652v1.767h-.472l.472 1.14.55 1.296.551-1.336.472-1.1h-.472V16.58H8.89v1.767h-.472l.472 1.14.551 1.296.55-1.336.473-1.139H9.99V16.54h1.652v1.768h-.472l.472 1.14.55 1.296.551-1.336.472-1.1h-.472V16.54h1.652v1.768h-.472l.472 1.14.59 1.374h.59V7.857h.63c.117.51.51.904.983.982v.393h-.04a.872.872 0 0 0-.865.864v1.337c0 .47.393.863.865.863h.04v.354h-.04a.872.872 0 0 0-.865.864v1.297c0 .471.393.864.865.864h.04v.354h-.04a.872.872 0 0 0-.865.864v1.297c0 .47.393.864.865.864h.04v.392a1.269 1.269 0 0 0-1.023 1.258c0 .707.55 1.257 1.259 1.257.708 0 1.258-.55 1.258-1.257.04-.59-.393-1.1-.983-1.218zM2.203 20.743a.746.746 0 1 1-1.495 0c0-.314.197-.629.511-.707v.196c0 .118.118.236.236.236a.254.254 0 0 0 .236-.236v-.196a.731.731 0 0 1 .512.707zm-.472-4.164c.118 0 .196.039.275.117.079.079.079.158.079.236v1.296a.42.42 0 0 1-.079.236.357.357 0 0 1-.275.118h-.04v-.236c0-.117-.078-.235-.236-.235h-.079a.254.254 0 0 0-.235.235v.236H1.1a.357.357 0 0 1-.275-.118c0-.078-.04-.157-.04-.235v-1.296c0-.08.04-.158.08-.237a.357.357 0 0 1 .275-.117h.039v.235c0 .118.118.236.236.236h.079c.118 0 .196-.118.196-.236l.04-.235c-.04 0-.04 0 0 0zm0-3.418c.118 0 .196.039.275.118.079.078.079.157.079.235v1.296a.42.42 0 0 1-.079.236.357.357 0 0 1-.275.118h-.04v-.235c0-.118-.078-.236-.236-.236h-.079c-.117 0-.196.118-.196.236v.235h-.04a.357.357 0 0 1-.275-.118c-.039-.039-.078-.117-.078-.235v-1.296c0-.08.039-.158.078-.236a.357.357 0 0 1 .276-.118h.039v.235c0 .118.118.236.236.236h.079c.118 0 .196-.118.196-.236l.04-.235c-.04 0-.04 0 0 0zm0-3.379a.36.36 0 0 1 .275.118c.079.079.079.157.079.236v1.296a.42.42 0 0 1-.079.236c-.118.078-.197.118-.275.118h-.04v-.236c0-.118-.078-.236-.236-.236h-.079c-.117-.039-.196.079-.196.197v.275h-.04a.357.357 0 0 1-.275-.118c-.039-.079-.078-.157-.078-.236v-1.296c0-.079.039-.157.078-.236a.357.357 0 0 1 .276-.118h.039v.236c0 .118.118.236.236.236h.079c.118 0 .196-.118.196-.236l.04-.236c-.04 0-.04 0 0 0zM1.69 8.33v-.197a.269.269 0 0 0-.275-.275c-.118 0-.236.118-.236.275v.197a.628.628 0 0 1-.354-.275.842.842 0 0 1-.157-.472c0-.432.354-.746.747-.746.315 0 .59.196.708.471v.04h-.197c-.157 0-.236.078-.275.235v.04c0 .157.118.235.275.235h.236a.798.798 0 0 1-.472.472zm4.445 7.15H4.484v-1.73h1.652v1.729zm0-2.829H4.484v-1.768h1.652v1.768zm0-2.829H4.484V8.054h1.652V9.82zm2.753 5.658H7.237v-1.73H8.89v1.729zm0-2.829H7.237v-1.768H8.89v1.768zm0-2.829H7.237V8.054H8.89V9.82zm2.754 5.658H9.99v-1.73h1.652v1.729zm0-2.829H9.99v-1.768h1.652v1.768zm0-2.829H9.99V8.054h1.652V9.82zm2.753 5.658h-1.652v-1.73h1.652v1.729zm0-2.829h-1.652v-1.768h1.652v1.768zm0-2.829h-1.652V8.054h1.652V9.82zm-1.652-2.985h-8.26v-.432a24.97 24.97 0 0 1 1.652-.433c1.062-.235 2.163-.314 3.304-.314 1.14 0 2.242.118 3.304.314.55.118 1.101.275 1.652.433v.432h-1.652zm3.973 1.021h.236c.157 0 .275-.118.275-.236v-.039c0-.118-.118-.236-.275-.236h-.236v-.039a.777.777 0 0 1 .708-.471c.432 0 .747.353.747.746 0 .157-.04.314-.157.472-.079.117-.197.196-.354.275v-.197c0-.157-.118-.236-.236-.236-.158 0-.236.118-.236.236v.197a.798.798 0 0 1-.472-.472zm.432 3.929a.357.357 0 0 1-.275-.118c-.079-.079-.079-.157-.079-.236v-1.296a.42.42 0 0 1 .079-.236.357.357 0 0 1 .275-.118h.04v.236c0 .118.078.236.196.236h.079c.118 0 .197-.118.236-.236v-.236h.04a.36.36 0 0 1 .275.118c.039.079.078.157.078.236v1.296c0 .079-.039.157-.078.236a.357.357 0 0 1-.276.118H17.7v-.236c0-.118-.079-.236-.236-.236h-.079a.254.254 0 0 0-.236.236v.236zm0 3.378a.357.357 0 0 1-.275-.118c-.079-.078-.079-.157-.079-.235v-1.296a.42.42 0 0 1 .079-.236.357.357 0 0 1 .275-.118h.04v.235c0 .118.078.236.196.236h.079c.118 0 .197-.118.236-.236v-.235h.04c.117 0 .196.039.275.118a.558.558 0 0 1 .078.235v1.296c0 .08-.039.158-.078.236a.357.357 0 0 1-.276.118H17.7v-.235c0-.118-.079-.236-.236-.236h-.079a.254.254 0 0 0-.236.236v.235zm0 3.418a.357.357 0 0 1-.275-.118c-.079-.078-.079-.157-.079-.235v-1.296a.42.42 0 0 1 .079-.237.357.357 0 0 1 .275-.117h.04v.235c0 .118.078.236.196.236h.079c.118 0 .197-.118.236-.236v-.235h.04a.36.36 0 0 1 .275.117c.039.079.078.158.078.236v1.296c0 .08-.039.158-.078.236a.357.357 0 0 1-.276.118H17.7v-.236c0-.117-.079-.235-.236-.235h-.079a.254.254 0 0 0-.236.235v.236zm.315 2.907a.746.746 0 0 1-.747-.746c0-.314.196-.629.511-.707v.196c0 .118.118.236.236.236a.254.254 0 0 0 .236-.236v-.196a.755.755 0 0 1 .511.707.773.773 0 0 1-.747.746z" fill="#333"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="134" height="25" viewBox="0 0 134 25" xmlns="http://www.w3.org/2000/svg"><title>parliament-uk--white-25</title><path d="M27.738 14.821c0-1.16-.045-2.098-.09-2.946h1.475l.089 1.563h.045c.67-1.117 1.742-1.742 3.216-1.742 2.188 0 3.796 1.83 3.796 4.554 0 3.214-1.965 4.821-4.109 4.821-1.206 0-2.233-.535-2.77-1.428h-.044v4.91h-1.608v-9.732zm1.608 2.411c0 .223.045.447.09.67.312 1.116 1.295 1.92 2.456 1.92 1.742 0 2.725-1.43 2.725-3.483 0-1.785-.938-3.348-2.68-3.348-1.117 0-2.144.804-2.457 2.009-.045.223-.134.446-.134.67v1.562zm15.32 1.518c0 .759.045 1.563.135 2.143h-1.474l-.134-1.116h-.045c-.491.714-1.474 1.34-2.77 1.34-1.83 0-2.769-1.296-2.769-2.59 0-2.188 1.921-3.348 5.405-3.348V15c0-.759-.223-2.098-2.055-2.098-.848 0-1.697.268-2.322.67l-.358-1.072c.76-.491 1.832-.804 2.948-.804 2.77 0 3.44 1.875 3.44 3.661v3.393zm-1.607-2.455c-1.787-.045-3.797.267-3.797 2.009 0 1.071.715 1.562 1.563 1.562a2.288 2.288 0 0 0 2.189-1.518c.045-.178.09-.357.09-.535l-.045-1.518zm4.243-1.608c0-1.07 0-1.964-.09-2.812h1.43l.045 1.786h.089c.402-1.206 1.385-1.965 2.501-1.965.179 0 .313 0 .447.045v1.563c-.179-.045-.357-.045-.58-.045-1.162 0-1.966.893-2.19 2.098a3.93 3.93 0 0 0-.089.76v4.776h-1.608v-6.206h.045zm6.164-7.008h1.653v13.214h-1.653V7.679zm6.209 1.696c0 .58-.402.982-1.028.982a.963.963 0 0 1-.982-.982c0-.58.446-1.027 1.027-1.027.58 0 .983.447.983 1.027zm-1.832 11.518v-9.018h1.653v9.018h-1.653zM68.52 18.75c0 .759.044 1.563.134 2.143H67.18l-.134-1.116H67c-.491.714-1.474 1.34-2.77 1.34-1.83 0-2.769-1.296-2.769-2.59 0-2.188 1.921-3.348 5.405-3.348V15c0-.759-.223-2.098-2.055-2.098-.848 0-1.697.268-2.322.67L62.13 12.5c.76-.491 1.832-.804 2.948-.804 2.77 0 3.44 1.875 3.44 3.661v3.393zm-1.564-2.455c-1.786-.045-3.796.267-3.796 2.009 0 1.071.714 1.562 1.563 1.562a2.29 2.29 0 0 0 2.189-1.518 2.24 2.24 0 0 0 .089-.535l-.045-1.518zm4.199-1.965c0-.937 0-1.696-.09-2.455h1.43l.09 1.429h.044c.491-.849 1.34-1.652 2.814-1.652 1.206 0 2.144.759 2.546 1.786h.045c.268-.492.625-.893.982-1.161.536-.402 1.117-.625 2.01-.625 1.206 0 2.948.759 2.948 3.884v5.312h-1.608v-5.044c0-1.742-.625-2.768-1.965-2.768-.938 0-1.653.67-1.92 1.473-.09.223-.135.536-.135.803v5.58h-1.608v-5.4c0-1.43-.625-2.456-1.876-2.456-1.027 0-1.786.803-2.01 1.652a2.337 2.337 0 0 0-.134.803v5.447H71.11V14.33h.045zm16.437 2.366c.045 2.233 1.43 3.125 3.082 3.125 1.162 0 1.876-.223 2.502-.446l.268 1.16c-.581.269-1.564.581-2.993.581-2.77 0-4.422-1.83-4.422-4.553 0-2.724 1.608-4.867 4.243-4.867 2.948 0 3.708 2.59 3.708 4.242 0 .357-.045.58-.045.758h-6.343zm4.78-1.16c0-1.027-.447-2.679-2.278-2.679-1.653 0-2.368 1.518-2.502 2.679h4.78zm3.618-1.206c0-.937 0-1.696-.09-2.455h1.43l.089 1.473h.045c.446-.848 1.474-1.696 2.992-1.696 1.251 0 3.172.759 3.172 3.84v5.356h-1.653v-5.134c0-1.428-.536-2.678-2.1-2.678-1.071 0-1.92.759-2.188 1.652-.09.223-.09.49-.09.758v5.402h-1.652l.045-6.518zm12.238-4.598v2.143h2.323v1.25h-2.323v4.866c0 1.116.313 1.741 1.206 1.741.447 0 .715-.044.938-.134l.09 1.206c-.313.134-.804.223-1.43.223-.759 0-1.384-.268-1.786-.715-.447-.49-.626-1.294-.626-2.32V13.08h-1.384v-1.25h1.384v-1.65l1.608-.447zm4.824 11.384c-.625 0-1.072-.491-1.072-1.16 0-.67.447-1.161 1.117-1.161.67 0 1.117.49 1.117 1.16-.045.625-.492 1.161-1.162 1.161zm10.676-2.678c0 .937 0 1.74.089 2.455h-1.43l-.089-1.473h-.044c-.447.714-1.385 1.651-2.993 1.651-1.43 0-3.127-.759-3.127-3.928v-5.268h1.653v5c0 1.696.536 2.857 2.01 2.857 1.117 0 1.876-.759 2.144-1.473.09-.223.134-.536.134-.848v-5.536h1.653v6.563zm4.332-2.411c.268-.313.581-.715.849-1.027l2.635-3.125h1.966l-3.484 3.705L134 20.893h-2.01l-3.127-4.33-.848.937v3.393h-1.608V7.679h1.608v8.348h.044zM20.1 22.143v-.447h.045a.991.991 0 0 0 .982-.982v-1.473a.991.991 0 0 0-.982-.982H20.1v-.402h.045a.991.991 0 0 0 .982-.982v-1.473a.991.991 0 0 0-.982-.982H20.1v-.402h.045a.991.991 0 0 0 .982-.982v-1.473a.991.991 0 0 0-.982-.983H20.1v-.446c.357-.09.67-.313.893-.58.179-.224.268-.536.268-.804a1.41 1.41 0 0 0-1.429-1.429c-.58 0-1.117.358-1.34.893-.045.09-.09.179-.09.268h-.714v-.625l.67-1.116L20.815 2.5s-.492-.268-.849-.446c-.179-.09-.357-.268-.491-.402l-.045-.045c-.045-.044-.09-.044-.179-.044a.305.305 0 0 0-.312.312c.089.09.178.223.268.357.178.223.312.491.357.848.09.402-.134.804-.357.893-.224.09-.715-.134-.938-.58-.179-.447-.09-1.116-.402-1.072-.313.045-.045.849-.224 1.429-.178.58-.58.938-.446 1.071.134.134.357-.133.58-.267.224-.134.581-.447.894-.134.268.268.089.759-.76 1.25-.491.268-1.027.49-1.429.535-.313.045-.58 0-.76-.178a.864.864 0 0 1-.267-.58l.044-.045A.863.863 0 0 0 15.723 5c.044-.223 0-.491-.09-.67.134-.223.313-.58.67-.625.581-.089.849.491.849.491s.536-.937.134-1.294c-.268-.268-1.117.178-1.43.357.045-.134.09-.313.135-.446A3.251 3.251 0 0 0 15.9.847a3.494 3.494 0 0 0-1.027 1.697c-.045.089-.045.223-.045.312-.223-.312-.67-.982-1.027-.893-.491.134-.491 1.161-.491 1.161s.491-.357.893 0c.313.268.313.804.268.982a.76.76 0 0 0-.447.58.756.756 0 0 0 0 .447v.045c-.268.223-.759.49-1.295.49-.357 0-.625-.133-.849-.356-.268-.268-.446-.67-.58-1.117v-.044c-.134-.536-.179-1.34-.179-1.34s.357-.133.804.18c0 0 .045 0 .045.044.536.401.536.893.804.893.223 0 .178-.76.223-1.295.045-.714.223-1.116.223-1.116.045-.045 0-.179-.089-.179-.134-.178-.179-.044-.179-.044s0 .357-.67.67c-.089.044-.134.044-.223.089-.402.089-.76-.045-.76-.045s-.178-.536.313-1.071a1 1 0 0 1 .224-.18 1.66 1.66 0 0 1 .491-.222c.179-.045.357-.09.491-.09V.312c0-.178-.134-.267-.268-.312-.089 0-.178.045-.268.045a22.44 22.44 0 0 0-.759.134c-.268.044-.536.044-.849.044-.268 0-.58 0-.848-.044-.268-.045-.536-.09-.76-.134C9.023.045 8.933 0 8.844 0c-.134.045-.268.179-.268.313v.133c.134 0 .313.045.536.134.179.045.313.134.491.224.09.044.134.089.224.178.536.536.357 1.072.357 1.072s-.402.089-.804 0c-.09 0-.134-.045-.223-.09-.67-.312-.715-.67-.715-.67s-.045-.133-.179-.089c-.089.045-.089.134-.089.179 0 0 .179.357.223 1.116.045.536 0 1.295.224 1.295.268 0 .268-.491.804-.893 0 0 .044 0 .044-.045.447-.268.849-.178.849-.178s-.045.848-.223 1.339v.045c-.134.446-.313.848-.581 1.116a1.144 1.144 0 0 1-.849.357c-.536 0-.982-.268-1.295-.491V5a.76.76 0 0 0 0-.446c-.045-.268-.223-.447-.447-.58-.044-.224-.044-.715.268-.983.447-.357.894 0 .894 0s0-1.027-.492-1.16c-.312-.09-.804.58-1.027.892 0-.09-.045-.223-.045-.312A3.494 3.494 0 0 0 5.494.714a3.269 3.269 0 0 0-.09 1.965c.045.134.09.312.135.446-.268-.09-1.072-.491-1.34-.268-.402.357.134 1.295.134 1.295s.268-.58.848-.491c.358.044.581.401.67.625a.712.712 0 0 0-.089.67.863.863 0 0 0 .223.401l.045.045a1.692 1.692 0 0 1-.268.58c-.179.179-.447.223-.76.179-.446-.045-.937-.268-1.429-.536-.893-.446-1.072-.938-.804-1.205.313-.268.67 0 .894.134.223.133.446.357.58.267.134-.133-.268-.49-.446-1.071-.224-.58.089-1.384-.224-1.429-.312-.044-.223.625-.402 1.072-.178.446-.67.625-.938.58-.223-.09-.491-.446-.402-1.071.09-.313.224-.58.402-.848.09-.134.179-.224.268-.358a.305.305 0 0 0-.312-.312c-.045 0-.134 0-.179.045-.045 0-.045.044-.045.044-.178.179-.312.357-.536.447a8.76 8.76 0 0 1-.848.446l2.456 4.241.67 1.116v.58h-.67a.626.626 0 0 0-.089-.267 1.417 1.417 0 0 0-1.34-.893A1.41 1.41 0 0 0 .178 8.57c0 .313.09.58.269.804.223.313.536.536.893.58v.447h-.045a.991.991 0 0 0-.982.982v1.473a.99.99 0 0 0 .982.982h.045v.402h-.045a.991.991 0 0 0-.982.982v1.473c0 .536.446.983.982.983h.045v.401h-.045a.991.991 0 0 0-.982.983v1.473a.99.99 0 0 0 .982.982h.045v.446a1.441 1.441 0 0 0-1.161 1.429 1.41 1.41 0 0 0 1.429 1.428 1.41 1.41 0 0 0 1.43-1.428c0-.714-.492-1.295-1.162-1.429v-.446h.045a.991.991 0 0 0 .982-.982v-1.474a.991.991 0 0 0-.982-.982v-.401h.044a.991.991 0 0 0 .983-.983v-1.473a.991.991 0 0 0-.983-.982h-.044v-.402h.044a.991.991 0 0 0 .983-.982v-1.473a.991.991 0 0 0-.983-.982h-.044v-.447c.58-.134 1.027-.58 1.116-1.116h.715v14.866h.67l.67-1.607.536-1.25h-.536V18.84h1.876v2.01h-.536l.536 1.294.625 1.473.626-1.518.536-1.25h-.536V18.84h1.876v2.01h-.536l.536 1.294.625 1.473.625-1.518.536-1.294h-.536v-2.01h1.876v2.01h-.536l.536 1.294.626 1.473.625-1.517.536-1.25h-.536v-2.01h1.876v2.01h-.536l.536 1.294.67 1.563h.67V8.929h.715c.134.58.58 1.026 1.116 1.116v.446h-.044a.991.991 0 0 0-.983.982v1.518c0 .536.447.982.983.982h.044v.402h-.044a.991.991 0 0 0-.983.982v1.473c0 .536.447.983.983.983h.044v.401h-.044a.991.991 0 0 0-.983.982v1.474c0 .535.447.982.983.982h.044v.446a1.441 1.441 0 0 0-1.161 1.429 1.41 1.41 0 0 0 1.43 1.428 1.41 1.41 0 0 0 1.429-1.428c.044-.67-.447-1.25-1.117-1.384zM2.501 23.57a.848.848 0 1 1-1.697 0c0-.357.223-.714.58-.803v.223c0 .134.135.268.269.268a.288.288 0 0 0 .268-.268v-.223a.83.83 0 0 1 .58.803zm-.536-4.732c.134 0 .224.045.313.134.09.09.09.179.09.268v1.473c0 .09-.045.224-.09.268a.406.406 0 0 1-.313.134h-.044v-.268c0-.134-.09-.268-.268-.268h-.09a.288.288 0 0 0-.268.268v.268h-.044a.406.406 0 0 1-.313-.134c0-.09-.045-.178-.045-.268V19.24c0-.09.045-.178.09-.268a.406.406 0 0 1 .312-.134h.045v.268c0 .134.134.268.268.268h.09c.133 0 .223-.134.223-.268l.044-.268c-.044 0-.044 0 0 0zm0-3.884c.134 0 .224.045.313.134.09.09.09.179.09.268v1.473c0 .09-.045.224-.09.268a.406.406 0 0 1-.313.134h-.044v-.268c0-.134-.09-.268-.268-.268h-.09c-.134 0-.223.134-.223.268v.268h-.045a.406.406 0 0 1-.312-.134c-.045-.044-.09-.134-.09-.268v-1.473c0-.09.045-.178.09-.268a.406.406 0 0 1 .312-.134h.045v.268c0 .134.134.268.268.268h.09c.133 0 .223-.134.223-.268l.044-.268c-.044 0-.044 0 0 0zm0-3.839c.134 0 .224.045.313.134.09.09.09.179.09.268v1.473c0 .09-.045.223-.09.268-.134.09-.223.134-.313.134h-.044v-.268c0-.134-.09-.268-.268-.268h-.09c-.134-.044-.223.09-.223.223v.313h-.045a.406.406 0 0 1-.312-.134.634.634 0 0 1-.09-.268v-1.473c0-.09.045-.179.09-.268a.406.406 0 0 1 .312-.134h.045v.268c0 .134.134.268.268.268h.09c.133 0 .223-.134.223-.268l.044-.268c-.044 0-.044 0 0 0zm-.044-1.652V9.24a.305.305 0 0 0-.313-.312c-.134 0-.268.133-.268.312v.223c-.179-.044-.313-.178-.402-.312a.957.957 0 0 1-.179-.536c0-.491.402-.848.849-.848.357 0 .67.223.804.536v.044h-.223c-.179 0-.268.09-.313.268v.045c0 .178.134.268.313.268h.268c-.09.267-.313.446-.536.535zm5.047 8.125H5.092v-1.964h1.876v1.964zm0-3.214H5.092v-2.009h1.876v2.009zm0-3.214H5.092V9.15h1.876v2.01zm3.127 6.428H8.219v-1.964h1.876v1.964zm0-3.214H8.219v-2.009h1.876v2.009zm0-3.214H8.219V9.15h1.876v2.01zm3.126 6.428h-1.876v-1.964h1.876v1.964zm0-3.214h-1.876v-2.009h1.876v2.009zm0-3.214h-1.876V9.15h1.876v2.01zm3.127 6.428h-1.876v-1.964h1.876v1.964zm0-3.214h-1.876v-2.009h1.876v2.009zm0-3.214h-1.876V9.15h1.876v2.01zm-1.876-3.393h-9.38v-.491c.625-.179 1.25-.357 1.876-.491 1.206-.268 2.457-.357 3.752-.357s2.546.133 3.752.357c.625.134 1.25.312 1.876.49v.492h-1.876zm4.511 1.16h.268c.179 0 .313-.133.313-.267v-.045c0-.134-.134-.268-.313-.268h-.268v-.044a.882.882 0 0 1 .804-.536c.492 0 .849.402.849.848a.858.858 0 0 1-.179.536c-.089.134-.223.223-.402.312V9.24c0-.178-.134-.268-.268-.268-.178 0-.268.134-.268.268v.223c-.223-.089-.446-.268-.536-.535zm.492 4.465a.406.406 0 0 1-.313-.134c-.09-.09-.09-.179-.09-.268v-1.473c0-.09.045-.223.09-.268a.406.406 0 0 1 .313-.134h.044v.268c0 .134.09.268.224.268h.089c.134 0 .223-.134.268-.268v-.268h.045c.134 0 .223.045.312.134.045.09.09.179.09.268v1.473c0 .09-.045.179-.09.268a.406.406 0 0 1-.312.134H20.1v-.268c0-.134-.09-.268-.268-.268h-.09a.288.288 0 0 0-.267.268v.268zm0 3.84a.406.406 0 0 1-.313-.135c-.09-.09-.09-.178-.09-.268v-1.473c0-.09.045-.223.09-.268a.406.406 0 0 1 .313-.134h.044v.268c0 .134.09.268.224.268h.089c.134 0 .223-.134.268-.268v-.268h.045c.134 0 .223.045.312.134.045.09.09.179.09.268v1.473c0 .09-.045.179-.09.268a.406.406 0 0 1-.312.134H20.1v-.268c0-.134-.09-.268-.268-.268h-.09a.288.288 0 0 0-.267.268v.268zm0 3.883a.406.406 0 0 1-.313-.134c-.09-.09-.09-.178-.09-.268V19.24c0-.09.045-.223.09-.268a.406.406 0 0 1 .313-.134h.044v.268c0 .134.09.268.224.268h.089c.134 0 .223-.134.268-.268v-.268h.045c.134 0 .223.045.312.134.045.09.09.179.09.268v1.473c0 .09-.045.179-.09.268a.406.406 0 0 1-.312.134H20.1v-.268c0-.134-.09-.268-.268-.268h-.09a.288.288 0 0 0-.267.268v.268zm.357 3.304a.848.848 0 0 1-.849-.849c0-.357.224-.714.581-.803v.223c0 .134.134.268.268.268a.288.288 0 0 0 .268-.268v-.223c.357.134.58.446.58.803a.878.878 0 0 1-.848.849z" fill="#FFF"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="268" height="50" viewBox="0 0 268 50" xmlns="http://www.w3.org/2000/svg"><title>parliament-uk--white</title><path d="M55.476 29.643c0-2.322-.09-4.197-.179-5.893h2.948l.179 3.125h.09c1.34-2.232 3.483-3.482 6.431-3.482 4.378 0 7.594 3.66 7.594 9.107 0 6.429-3.931 9.643-8.219 9.643-2.412 0-4.467-1.072-5.539-2.857h-.089v9.821h-3.216V29.643zm3.216 4.821c0 .447.09.893.179 1.34.625 2.232 2.59 3.839 4.913 3.839 3.484 0 5.45-2.857 5.45-6.964 0-3.572-1.877-6.697-5.36-6.697-2.234 0-4.289 1.607-4.914 4.018-.09.446-.268.893-.268 1.34v3.124zM89.333 37.5c0 1.518.09 3.125.268 4.286h-2.948l-.268-2.232h-.089c-.983 1.428-2.948 2.678-5.539 2.678-3.662 0-5.538-2.59-5.538-5.178 0-4.375 3.841-6.697 10.809-6.697V30c0-1.518-.447-4.196-4.11-4.196-1.697 0-3.394.535-4.645 1.339L76.56 25c1.518-.982 3.662-1.607 5.896-1.607 5.538 0 6.878 3.75 6.878 7.321V37.5zm-3.216-4.91c-3.573-.09-7.593.535-7.593 4.017 0 2.143 1.43 3.125 3.127 3.125a4.576 4.576 0 0 0 4.377-3.036c.09-.357.179-.714.179-1.071l-.09-3.036zm8.487-3.215c0-2.143 0-3.929-.179-5.625h2.859l.09 3.571h.178c.804-2.41 2.77-3.928 5.003-3.928.357 0 .625 0 .893.09v3.124c-.357-.09-.715-.09-1.161-.09-2.323 0-3.931 1.787-4.378 4.197-.089.447-.178.982-.178 1.518v9.554h-3.216V29.375h.089zm12.328-14.018h3.305v26.429h-3.305V15.357zm12.417 3.393c0 1.16-.804 1.964-2.054 1.964-1.162 0-1.966-.893-1.966-1.964 0-1.16.894-2.054 2.055-2.054s1.965.893 1.965 2.054zm-3.662 23.036V23.75h3.305v18.036h-3.305zm21.35-4.286c0 1.518.09 3.125.268 4.286h-2.948l-.268-2.232H134c-.983 1.428-2.948 2.678-5.539 2.678-3.662 0-5.538-2.59-5.538-5.178 0-4.375 3.841-6.697 10.809-6.697V30c0-1.518-.447-4.196-4.11-4.196-1.697 0-3.394.535-4.645 1.339L124.263 25c1.518-.982 3.662-1.607 5.896-1.607 5.538 0 6.878 3.75 6.878 7.321V37.5zm-3.126-4.91c-3.574-.09-7.594.535-7.594 4.017 0 2.143 1.43 3.125 3.127 3.125a4.576 4.576 0 0 0 4.377-3.036c.09-.357.179-.714.179-1.071l-.09-3.036zm8.397-3.93c0-1.874 0-3.392-.179-4.91h2.859l.179 2.857h.089c.983-1.696 2.68-3.303 5.628-3.303 2.412 0 4.288 1.517 5.092 3.571h.09c.535-.982 1.25-1.786 1.965-2.321 1.072-.804 2.233-1.25 4.02-1.25 2.412 0 5.896 1.517 5.896 7.767v10.625h-3.216V31.607c0-3.482-1.251-5.536-3.931-5.536-1.876 0-3.305 1.34-3.841 2.947-.179.446-.268 1.071-.268 1.607v11.16h-3.216V30.983c0-2.857-1.251-4.91-3.752-4.91-2.055 0-3.574 1.607-4.02 3.303-.179.446-.268 1.071-.268 1.607v10.893h-3.216V28.661h.089zm32.875 4.733c.089 4.464 2.858 6.25 6.164 6.25 2.322 0 3.752-.447 5.002-.893l.536 2.321c-1.161.536-3.126 1.161-5.985 1.161-5.539 0-8.844-3.66-8.844-9.107 0-5.446 3.216-9.732 8.487-9.732 5.896 0 7.414 5.178 7.414 8.482 0 .714-.089 1.16-.089 1.518h-12.685zm9.558-2.322c0-2.053-.893-5.357-4.556-5.357-3.305 0-4.734 3.036-5.002 5.357h9.558zm7.236-2.41c0-1.875 0-3.393-.178-4.911h2.858l.179 2.946h.09c.893-1.696 2.947-3.392 5.985-3.392 2.501 0 6.342 1.517 6.342 7.678v10.714h-3.305V31.43c0-2.858-1.072-5.358-4.199-5.358-2.144 0-3.841 1.518-4.377 3.304-.179.446-.179.982-.179 1.518v10.803h-3.305l.09-13.035zm24.478-9.197v4.286h4.645v2.5h-4.645v9.732c0 2.232.625 3.482 2.412 3.482.893 0 1.429-.089 1.876-.268l.178 2.411c-.625.268-1.608.447-2.858.447-1.519 0-2.77-.536-3.574-1.429-.893-.982-1.25-2.59-1.25-4.643v-9.821h-2.77v-2.5h2.77v-3.304l3.216-.893zm9.648 22.768c-1.251 0-2.144-.982-2.144-2.321 0-1.34.893-2.322 2.233-2.322s2.233.982 2.233 2.322c-.089 1.25-.982 2.321-2.322 2.321zm21.35-5.357c0 1.875 0 3.482.179 4.91h-2.859l-.178-2.946h-.09c-.893 1.429-2.769 3.304-5.985 3.304-2.859 0-6.253-1.518-6.253-7.857V23.75h3.305v10c0 3.393 1.072 5.714 4.02 5.714 2.233 0 3.752-1.518 4.288-2.946.179-.447.268-1.072.268-1.697V23.75h3.305v13.125zm8.666-4.821c.536-.625 1.161-1.429 1.697-2.054l5.27-6.25h3.931l-6.968 7.41L268 41.787h-4.02l-6.253-8.661L256.029 35v6.786h-3.216V15.357h3.216v16.697h.09zM40.2 44.286v-.893h.09a1.982 1.982 0 0 0 1.965-1.964v-2.947a1.982 1.982 0 0 0-1.966-1.964H40.2v-.804h.09a1.982 1.982 0 0 0 1.965-1.964v-2.946a1.982 1.982 0 0 0-1.966-1.965H40.2v-.803h.09a1.982 1.982 0 0 0 1.965-1.965v-2.946a1.982 1.982 0 0 0-1.966-1.964H40.2v-.893c.715-.179 1.34-.625 1.787-1.16.357-.447.536-1.072.536-1.608a2.821 2.821 0 0 0-2.859-2.857 2.926 2.926 0 0 0-2.68 1.786c-.09.178-.179.357-.179.535h-1.429v-1.25l1.34-2.232L41.629 5s-.982-.536-1.697-.893c-.357-.178-.715-.536-.983-.803l-.089-.09c-.09-.089-.179-.089-.357-.089a.61.61 0 0 0-.626.625c.179.179.358.446.536.714.358.447.626.982.715 1.697.179.803-.268 1.607-.715 1.785-.446.179-1.429-.267-1.876-1.16-.357-.893-.178-2.232-.804-2.143-.625.09-.089 1.696-.446 2.857-.358 1.16-1.162 1.875-.894 2.143.268.268.715-.268 1.162-.536.446-.268 1.161-.893 1.786-.268.536.536.179 1.518-1.518 2.5-.983.536-2.055.982-2.859 1.072-.625.089-1.161 0-1.519-.357-.357-.358-.536-.804-.536-1.161l.09-.09c.178-.178.357-.446.446-.803.09-.446 0-.982-.178-1.34.268-.446.625-1.16 1.34-1.25 1.161-.178 1.697.983 1.697.983s1.072-1.875.268-2.59c-.536-.535-2.233.358-2.859.715.09-.268.179-.625.268-.893.358-1.34.268-2.768-.178-3.929a6.988 6.988 0 0 0-2.055 3.393c-.09.179-.09.447-.09.625-.446-.625-1.34-1.964-2.054-1.785-.983.267-.983 2.321-.983 2.321s.983-.714 1.787 0c.625.536.625 1.607.536 1.964-.447.179-.804.625-.893 1.161-.09.357-.09.625 0 .893v.09c-.536.446-1.519.981-2.591.981-.715 0-1.25-.268-1.697-.714-.536-.536-.894-1.34-1.162-2.232v-.09c-.268-1.07-.357-2.678-.357-2.678s.715-.268 1.608.357c0 0 .09 0 .09.09 1.071.803 1.071 1.785 1.607 1.785.447 0 .358-1.518.447-2.59.09-1.428.447-2.231.447-2.231.089-.09 0-.357-.179-.357-.268-.358-.357-.09-.357-.09s0 .715-1.34 1.34c-.179.089-.268.089-.447.178-.804.179-1.519-.09-1.519-.09s-.357-1.07.626-2.142c.089-.09.268-.268.446-.357.268-.179.626-.357.983-.447.357-.089.715-.178.983-.178V.625c0-.357-.268-.536-.536-.625-.179 0-.358.09-.536.09-.536.089-1.072.178-1.519.267-.536.09-1.072.09-1.697.09-.536 0-1.162 0-1.698-.09A50.996 50.996 0 0 1 18.135.09c-.09 0-.268-.089-.447-.089-.268.09-.536.357-.536.625v.268c.268 0 .625.09 1.072.268.357.089.625.268.983.446.178.09.268.179.446.357 1.072 1.072.715 2.143.715 2.143s-.804.179-1.608 0c-.179 0-.268-.09-.447-.178-1.34-.625-1.429-1.34-1.429-1.34s-.09-.268-.357-.178c-.179.089-.179.268-.179.357 0 0 .357.714.447 2.232.089 1.071 0 2.59.446 2.59.536 0 .536-.983 1.608-1.786 0 0 .09 0 .09-.09.893-.535 1.697-.357 1.697-.357s-.09 1.697-.447 2.679v.089c-.268.893-.625 1.696-1.161 2.232-.447.447-.983.714-1.697.714-1.072 0-1.966-.535-2.591-.982V10a1.52 1.52 0 0 0 0-.893c-.09-.536-.447-.893-.893-1.16-.09-.447-.09-1.43.536-1.965.893-.714 1.786 0 1.786 0s0-2.053-.982-2.321c-.626-.179-1.608 1.16-2.055 1.785 0-.178-.09-.446-.09-.625a6.988 6.988 0 0 0-2.054-3.392 6.537 6.537 0 0 0-.179 3.928c.09.268.179.625.268.893-.536-.179-2.144-.982-2.68-.536-.804.715.268 2.59.268 2.59s.536-1.161 1.698-.983c.714.09 1.161.804 1.34 1.25a1.424 1.424 0 0 0-.179 1.34c.09.357.268.625.447.803l.089.09c-.09.357-.268.803-.536 1.16-.357.357-.893.447-1.519.357-.893-.089-1.876-.535-2.858-1.071-1.787-.893-2.144-1.875-1.608-2.41.625-.536 1.34 0 1.786.267.447.268.894.714 1.162.536.268-.268-.536-.982-.894-2.143-.446-1.16.179-2.768-.446-2.857-.626-.09-.447 1.25-.804 2.143-.358.893-1.34 1.25-1.876 1.16-.447-.178-.983-.892-.804-2.142a5.92 5.92 0 0 1 .804-1.697c.178-.268.357-.446.536-.714a.61.61 0 0 0-.626-.625c-.089 0-.268 0-.357.09-.09 0-.09.088-.09.088-.357.358-.625.715-1.071.893-.715.447-1.698.893-1.698.893l4.914 8.482 1.34 2.232v1.161h-1.34c0-.178-.09-.357-.179-.536-.447-1.071-1.43-1.785-2.68-1.785a2.821 2.821 0 0 0-2.859 2.857c0 .625.179 1.16.536 1.607.447.625 1.072 1.071 1.787 1.16v.894h-.09a1.982 1.982 0 0 0-1.965 1.964v2.946c0 1.072.894 1.965 1.966 1.965h.089v.803h-.09a1.982 1.982 0 0 0-1.965 1.964v2.947c0 1.071.894 1.964 1.966 1.964h.089v.804h-.09a1.982 1.982 0 0 0-1.965 1.964v2.946c0 1.072.894 1.965 1.966 1.965h.089v.893a2.882 2.882 0 0 0-2.323 2.857 2.821 2.821 0 0 0 2.859 2.857 2.821 2.821 0 0 0 2.859-2.857c0-1.429-.983-2.59-2.323-2.857v-.893h.09a1.982 1.982 0 0 0 1.965-1.965v-2.946a1.982 1.982 0 0 0-1.966-1.964v-.804h.09a1.982 1.982 0 0 0 1.965-1.964v-2.947a1.982 1.982 0 0 0-1.965-1.964h-.09v-.803h.09a1.982 1.982 0 0 0 1.965-1.965v-2.946a1.982 1.982 0 0 0-1.965-1.964h-.09v-.893c1.162-.268 2.055-1.161 2.234-2.232h1.429V47.41h1.34l1.34-3.215 1.072-2.5h-1.072V37.68h3.752v4.017h-1.072l1.072 2.59 1.25 2.946 1.251-3.036 1.072-2.5h-1.072V37.68h3.752v4.017h-1.072l1.072 2.59 1.251 2.946 1.25-3.036 1.073-2.589H22.69V37.59h3.752v4.018H25.37l1.072 2.59 1.25 2.946 1.251-3.036 1.072-2.5h-1.072V37.59h3.752v4.018h-1.072l1.072 2.59 1.34 3.124h1.34V17.857h1.43c.267 1.16 1.16 2.054 2.233 2.232v.893h-.09a1.982 1.982 0 0 0-1.965 1.964v3.036c0 1.072.893 1.964 1.965 1.964h.09v.804h-.09a1.982 1.982 0 0 0-1.965 1.964v2.947c0 1.071.893 1.964 1.965 1.964h.09v.804h-.09a1.982 1.982 0 0 0-1.965 1.964v2.946c0 1.072.893 1.965 1.965 1.965h.09v.892a2.882 2.882 0 0 0-2.323 2.858 2.821 2.821 0 0 0 2.859 2.857 2.821 2.821 0 0 0 2.858-2.857c.09-1.34-.893-2.5-2.233-2.768zM5.003 47.143c0 .982-.804 1.696-1.698 1.696a1.696 1.696 0 0 1-1.697-1.696c0-.714.447-1.429 1.161-1.607v.446c0 .268.268.536.536.536s.536-.268.536-.536v-.446c.626.178 1.162.803 1.162 1.607zM3.93 37.679c.268 0 .446.089.625.267.179.179.179.358.179.536v2.947c0 .178-.09.446-.179.535a.811.811 0 0 1-.625.268h-.09v-.536c0-.267-.178-.535-.536-.535h-.178c-.268 0-.536.268-.536.535v.536H2.5a.811.811 0 0 1-.625-.268c0-.178-.09-.357-.09-.535v-2.947c0-.178.09-.357.18-.536a.811.811 0 0 1 .625-.267h.089v.535c0 .268.268.536.536.536h.179c.268 0 .446-.268.446-.536l.09-.535c-.09 0-.09 0 0 0zm0-7.768a.81.81 0 0 1 .625.268c.179.178.179.357.179.535v2.947c0 .178-.09.446-.179.535a.811.811 0 0 1-.625.268h-.09v-.535c0-.268-.178-.536-.536-.536h-.178c-.268 0-.447.268-.447.536v.535h-.09a.811.811 0 0 1-.625-.268c-.089-.089-.178-.267-.178-.535v-2.947c0-.178.089-.357.178-.535a.811.811 0 0 1 .626-.268h.089v.535c0 .268.268.536.536.536h.179c.268 0 .446-.268.446-.536l.09-.535c-.09 0-.09 0 0 0zm0-7.679c.268 0 .446.09.625.268.179.179.179.357.179.536v2.946c0 .179-.09.447-.179.536-.268.178-.447.268-.625.268h-.09v-.536c0-.268-.178-.536-.536-.536h-.178c-.268-.089-.447.179-.447.447v.625h-.09a.811.811 0 0 1-.625-.268c-.089-.179-.178-.357-.178-.536v-2.946c0-.179.089-.357.178-.536a.811.811 0 0 1 .626-.268h.089v.536c0 .268.268.536.536.536h.179c.268 0 .446-.268.446-.536l.09-.536c-.09 0-.09 0 0 0zm-.09-3.303v-.447a.61.61 0 0 0-.625-.625c-.268 0-.536.268-.536.625v.447c-.357-.09-.625-.358-.804-.625-.179-.268-.357-.625-.357-1.072 0-.982.804-1.696 1.697-1.696.715 0 1.34.446 1.608 1.071v.09h-.447c-.357 0-.536.178-.625.535v.09c0 .357.268.535.625.535h.536c-.178.536-.625.893-1.072 1.072zm10.095 16.25h-3.752V31.25h3.752v3.929zm0-6.429h-3.752v-4.018h3.752v4.018zm0-6.429h-3.752v-4.017h3.752v4.017zm6.253 12.858h-3.752V31.25h3.752v3.929zm0-6.429h-3.752v-4.018h3.752v4.018zm0-6.429h-3.752v-4.017h3.752v4.017zm6.254 12.858H22.69V31.25h3.752v3.929zm0-6.429H22.69v-4.018h3.752v4.018zm0-6.429H22.69v-4.017h3.752v4.017zm6.253 12.858h-3.752V31.25h3.752v3.929zm0-6.429h-3.752v-4.018h3.752v4.018zm0-6.429h-3.752v-4.017h3.752v4.017zm-3.752-6.785h-18.76v-.982c1.25-.358 2.501-.715 3.752-.983 2.412-.535 4.913-.714 7.504-.714 2.59 0 5.092.268 7.504.714 1.25.268 2.501.625 3.752.983v.982h-3.752zm9.023 2.321h.536c.357 0 .625-.268.625-.536v-.089c0-.268-.268-.536-.625-.536h-.536v-.089a1.765 1.765 0 0 1 1.608-1.071c.982 0 1.697.803 1.697 1.696 0 .357-.09.714-.357 1.072-.179.267-.447.446-.804.625v-.447c0-.357-.268-.536-.536-.536-.358 0-.536.268-.536.536v.447c-.447-.179-.894-.536-1.072-1.072zm.982 8.929a.811.811 0 0 1-.625-.268c-.179-.179-.179-.357-.179-.536v-2.946c0-.179.09-.447.179-.536a.811.811 0 0 1 .625-.268h.09v.536c0 .268.178.536.446.536h.179c.268 0 .447-.268.536-.536v-.536h.09c.267 0 .446.09.625.268.089.179.178.357.178.536v2.946c0 .179-.089.357-.178.536a.811.811 0 0 1-.626.268H40.2v-.536c0-.268-.179-.536-.536-.536h-.179c-.268 0-.536.268-.536.536v.536zm0 7.678a.811.811 0 0 1-.625-.268c-.179-.178-.179-.357-.179-.535v-2.947c0-.178.09-.446.179-.535a.811.811 0 0 1 .625-.268h.09v.535c0 .268.178.536.446.536h.179c.268 0 .447-.268.536-.536v-.535h.09c.267 0 .446.089.625.268.089.178.178.357.178.535v2.947c0 .178-.089.357-.178.535a.811.811 0 0 1-.626.268H40.2v-.535c0-.268-.179-.536-.536-.536h-.179c-.268 0-.536.268-.536.536v.535zm0 7.768a.811.811 0 0 1-.625-.268c-.179-.178-.179-.357-.179-.535v-2.947c0-.178.09-.446.179-.536a.811.811 0 0 1 .625-.267h.09v.535c0 .268.178.536.446.536h.179c.268 0 .447-.268.536-.536v-.535h.09c.267 0 .446.089.625.267.089.179.178.358.178.536v2.947c0 .178-.089.357-.178.535a.811.811 0 0 1-.626.268H40.2v-.536c0-.267-.179-.535-.536-.535h-.179c-.268 0-.536.268-.536.535v.536zm.715 6.607a1.696 1.696 0 0 1-1.697-1.696c0-.714.446-1.429 1.161-1.607v.446c0 .268.268.536.536.536s.536-.268.536-.536v-.446c.715.268 1.161.893 1.161 1.607 0 .893-.804 1.696-1.697 1.696z" fill="#FFF"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="56" viewBox="0 0 48 56" xmlns="http://www.w3.org/2000/svg"><title>parliament-uk-portcullis-black</title><path d="M45 49.6v-1h.1c1.2 0 2.2-1 2.2-2.2v-3.3c0-1.2-1-2.2-2.2-2.2H45V40h.1c1.2 0 2.2-1 2.2-2.2v-3.3c0-1.2-1-2.2-2.2-2.2H45v-.9h.1c1.2 0 2.2-1 2.2-2.2v-3.3c0-1.2-1-2.2-2.2-2.2H45v-1c.8-.2 1.5-.7 2-1.3.4-.5.6-1.2.6-1.8 0-1.8-1.4-3.2-3.2-3.2-1.3 0-2.5.8-3 2-.1.2-.2.4-.2.6h-1.6v-1.4l1.5-2.5 5.5-9.5s-1.1-.6-1.9-1c-.4-.2-.8-.6-1.1-.9l-.1-.1c-.1-.1-.2-.1-.4-.1-.4 0-.7.3-.7.7.2.2.4.5.6.8.4.5.7 1.1.8 1.9.2.9-.3 1.8-.8 2-.5.2-1.6-.3-2.1-1.3-.4-1-.2-2.5-.9-2.4-.7.1-.1 1.9-.5 3.2-.4 1.3-1.3 2.1-1 2.4.3.3.8-.3 1.3-.6s1.3-1 2-.3c.6.6.2 1.7-1.7 2.8-1.1.6-2.3 1.1-3.2 1.2-.7.1-1.3 0-1.7-.4-.4-.4-.6-.9-.6-1.3l.1-.1c.2-.2.4-.5.5-.9.1-.5 0-1.1-.2-1.5.3-.5.7-1.3 1.5-1.4 1.3-.2 1.9 1.1 1.9 1.1s1.2-2.1.3-2.9c-.6-.6-2.5.4-3.2.8.1-.3.2-.7.3-1 .4-1.5.3-3.1-.2-4.4-1.1 1-1.9 2.3-2.3 3.8-.1.2-.1.5-.1.7-.5-.7-1.5-2.2-2.3-2-1.1.3-1.1 2.6-1.1 2.6s1.1-.8 2 0c.7.6.7 1.8.6 2.2-.5.2-.9.7-1 1.3-.1.4-.1.7 0 1v.1c-.6.5-1.7 1.1-2.9 1.1-.8 0-1.4-.3-1.9-.8-.6-.6-1-1.5-1.3-2.5v-.1c-.3-1.2-.4-3-.4-3s.8-.3 1.8.4c0 0 .1 0 .1.1 1.2.9 1.2 2 1.8 2 .5 0 .4-1.7.5-2.9.1-1.6.5-2.5.5-2.5.1-.1 0-.4-.2-.4-.3-.4-.4-.1-.4-.1s0 .8-1.5 1.5c-.2.1-.3.1-.5.2-.9.2-1.7-.1-1.7-.1s-.4-1.2.7-2.4c.1-.1.3-.3.5-.4.3-.2.7-.4 1.1-.5.4-.1.8-.2 1.1-.2V.7c0-.4-.3-.6-.6-.7-.2 0-.4.1-.6.1-.6.1-1.2.2-1.7.3-.6.1-1.2.1-1.9.1-.6 0-1.3 0-1.9-.1-.6-.1-1.2-.2-1.7-.3-.1 0-.3-.1-.5-.1-.3.1-.6.4-.6.7V1c.3 0 .7.1 1.2.3.4.1.7.3 1.1.5.2.1.3.2.5.4 1.2 1.2.8 2.4.8 2.4s-.9.2-1.8 0c-.2 0-.3-.1-.5-.2-1.5-.7-1.6-1.5-1.6-1.5s-.1-.3-.4-.2c-.2.1-.2.3-.2.4 0 0 .4.8.5 2.5.1 1.2 0 2.9.5 2.9.6 0 .6-1.1 1.8-2 0 0 .1 0 .1-.1 1-.6 1.9-.4 1.9-.4s-.1 1.9-.5 3v.1c-.3 1-.7 1.9-1.3 2.5-.5.5-1.1.8-1.9.8-1.2 0-2.2-.6-2.9-1.1v-.1c.1-.3.1-.7 0-1-.1-.6-.5-1-1-1.3-.1-.5-.1-1.6.6-2.2 1-.8 2 0 2 0s0-2.3-1.1-2.6c-.7-.2-1.8 1.3-2.3 2 0-.2-.1-.5-.1-.7-.4-1.5-1.2-2.8-2.3-3.8-.5 1.4-.6 2.9-.2 4.4.1.3.2.7.3 1-.6-.2-2.4-1.1-3-.6-.9.8.3 2.9.3 2.9s.6-1.3 1.9-1.1c.8.1 1.3.9 1.5 1.4-.3.4-.4 1-.2 1.5.1.4.3.7.5.9l.1.1c-.1.4-.3.9-.6 1.3-.4.4-1 .5-1.7.4-1-.1-2.1-.6-3.2-1.2-2-1-2.4-2.1-1.8-2.7.7-.6 1.5 0 2 .3s1 .8 1.3.6c.3-.3-.6-1.1-1-2.4-.5-1.3.2-3.1-.5-3.2-.7-.1-.5 1.4-.9 2.4S5.6 9 5 8.9c-.5-.2-1.1-1-.9-2.4.2-.7.5-1.3.9-1.9.2-.3.4-.5.6-.8 0-.4-.3-.7-.7-.7-.1 0-.3 0-.4.1-.1 0-.1.1-.1.1-.4.4-.7.8-1.2 1-.8.5-1.9 1-1.9 1l5.5 9.5 1.5 2.5v1.3H6.8c0-.2-.1-.4-.2-.6-.5-1.2-1.6-2-3-2-1.8 0-3.2 1.4-3.2 3.2 0 .7.2 1.3.6 1.8.5.7 1.2 1.2 2 1.3v1h-.1c-1.2 0-2.2 1-2.2 2.2v3.3c0 1.2 1 2.2 2.2 2.2H3v.9h-.1c-1.2 0-2.2 1-2.2 2.2v3.3c0 1.2 1 2.2 2.2 2.2H3v.9h-.1c-1.2 0-2.2 1-2.2 2.2V46c0 1.2 1 2.2 2.2 2.2H3v1c-1.5.3-2.6 1.6-2.6 3.2 0 1.8 1.4 3.2 3.2 3.2 1.8 0 3.2-1.4 3.2-3.2 0-1.6-1.1-2.9-2.6-3.2v-1h.1c1.2 0 2.2-1 2.2-2.2v-3.3c0-1.2-1-2.2-2.2-2.2v-.9h.1c1.2 0 2.2-1 2.2-2.2v-3.3c0-1.2-1-2.2-2.2-2.2h-.1V31h.1c1.2 0 2.2-1 2.2-2.2v-3.3c0-1.2-1-2.2-2.2-2.2h-.1v-1c1.3-.3 2.3-1.3 2.5-2.5h1.6v33.3h1.5l1.5-3.6 1.2-2.8h-1.2v-4.5h4.2v4.5h-1.2l1.2 2.9 1.4 3.3 1.4-3.4 1.2-2.8h-1.2v-4.5h4.2v4.5h-1.2l1.2 2.9 1.4 3.3 1.4-3.4 1.2-2.9h-1.2v-4.5h4.2v4.5h-1.2l1.2 2.9 1.4 3.3 1.4-3.4 1.2-2.8h-1.2v-4.5h4.2v4.5h-1.2l1.2 2.9 1.5 3.5h1.5V20h1.6c.3 1.3 1.3 2.3 2.5 2.5v1h-.1c-1.2 0-2.2 1-2.2 2.2v3.4c0 1.2 1 2.2 2.2 2.2h.1v.9h-.1c-1.2 0-2.2 1-2.2 2.2v3.3c0 1.2 1 2.2 2.2 2.2h.1v.9h-.1c-1.2 0-2.2 1-2.2 2.2v3.3c0 1.2 1 2.2 2.2 2.2h.1v1c-1.5.3-2.6 1.6-2.6 3.2 0 1.8 1.4 3.2 3.2 3.2 1.8 0 3.2-1.4 3.2-3.2.1-1.5-1-2.8-2.5-3.1zM5.6 52.8c0 1.1-.9 1.9-1.9 1.9-1.1 0-1.9-.9-1.9-1.9 0-.8.5-1.6 1.3-1.8v.5c0 .3.3.6.6.6s.6-.3.6-.6V51c.7.2 1.3.9 1.3 1.8zM4.4 42.2c.3 0 .5.1.7.3.2.2.2.4.2.6v3.3c0 .2-.1.5-.2.6-.2.2-.4.3-.7.3h-.1v-.6c0-.3-.2-.6-.6-.6h-.2c-.3 0-.6.3-.6.6v.6h-.1c-.3 0-.5-.1-.7-.3 0-.2-.1-.4-.1-.6v-3.3c0-.2.1-.4.2-.6.2-.2.4-.3.7-.3H3v.6c0 .3.3.6.6.6h.2c.3 0 .5-.3.5-.6l.1-.6c-.1 0-.1 0 0 0zm0-8.7c.3 0 .5.1.7.3.2.2.2.4.2.6v3.3c0 .2-.1.5-.2.6-.2.2-.4.3-.7.3h-.1V38c0-.3-.2-.6-.6-.6h-.2c-.3 0-.5.3-.5.6v.6h-.1c-.3 0-.5-.1-.7-.3-.1-.1-.2-.3-.2-.6v-3.3c0-.2.1-.4.2-.6.2-.2.4-.3.7-.3H3v.6c0 .3.3.6.6.6h.2c.3 0 .5-.3.5-.6l.1-.6c-.1 0-.1 0 0 0zm0-8.6c.3 0 .5.1.7.3.2.2.2.4.2.6v3.3c0 .2-.1.5-.2.6-.3.2-.5.3-.7.3h-.1v-.6c0-.3-.2-.6-.6-.6h-.2c-.3-.1-.5.2-.5.5v.7h-.1c-.3 0-.5-.1-.7-.3-.1-.2-.2-.4-.2-.6v-3.3c0-.2.1-.4.2-.6.2-.2.4-.3.7-.3H3v.6c0 .3.3.6.6.6h.2c.3 0 .5-.3.5-.6l.1-.6c-.1 0-.1 0 0 0zm-.1-3.7v-.5c0-.4-.3-.7-.7-.7-.3 0-.6.3-.6.7v.5c-.4-.1-.7-.4-.9-.7-.2-.3-.4-.7-.4-1.2 0-1.1.9-1.9 1.9-1.9.8 0 1.5.5 1.8 1.2v.1h-.5c-.4 0-.6.2-.7.6v.1c0 .4.3.6.7.6h.6c-.2.6-.7 1-1.2 1.2zm11.3 18.2h-4.2V35h4.2v4.4zm0-7.2h-4.2v-4.5h4.2v4.5zm0-7.2h-4.2v-4.5h4.2V25zm7 14.4h-4.2V35h4.2v4.4zm0-7.2h-4.2v-4.5h4.2v4.5zm0-7.2h-4.2v-4.5h4.2V25zm7 14.4h-4.2V35h4.2v4.4zm0-7.2h-4.2v-4.5h4.2v4.5zm0-7.2h-4.2v-4.5h4.2V25zm7 14.4h-4.2V35h4.2v4.4zm0-7.2h-4.2v-4.5h4.2v4.5zm0-7.2h-4.2v-4.5h4.2V25zm-4.2-7.6h-21v-1.1c1.4-.4 2.8-.8 4.2-1.1 2.7-.6 5.5-.8 8.4-.8 2.9 0 5.7.3 8.4.8 1.4.3 2.8.7 4.2 1.1v1.1h-4.2zM42.5 20h.6c.4 0 .7-.3.7-.6v-.1c0-.3-.3-.6-.7-.6h-.6v-.1c.3-.7 1-1.2 1.8-1.2 1.1 0 1.9.9 1.9 1.9 0 .4-.1.8-.4 1.2-.2.3-.5.5-.9.7v-.5c0-.4-.3-.6-.6-.6-.4 0-.6.3-.6.6v.5c-.5-.2-1-.6-1.2-1.2zm1.1 10c-.3 0-.5-.1-.7-.3-.2-.2-.2-.4-.2-.6v-3.3c0-.2.1-.5.2-.6.2-.2.4-.3.7-.3h.1v.6c0 .3.2.6.5.6h.2c.3 0 .5-.3.6-.6v-.6h.1c.3 0 .5.1.7.3.1.2.2.4.2.6v3.3c0 .2-.1.4-.2.6-.2.2-.4.3-.7.3H45v-.6c0-.3-.2-.6-.6-.6h-.2c-.3 0-.6.3-.6.6v.6zm0 8.6c-.3 0-.5-.1-.7-.3-.2-.2-.2-.4-.2-.6v-3.3c0-.2.1-.5.2-.6.2-.2.4-.3.7-.3h.1v.6c0 .3.2.6.5.6h.2c.3 0 .5-.3.6-.6v-.6h.1c.3 0 .5.1.7.3.1.2.2.4.2.6v3.3c0 .2-.1.4-.2.6-.2.2-.4.3-.7.3H45V38c0-.3-.2-.6-.6-.6h-.2c-.3 0-.6.3-.6.6v.6zm0 8.7c-.3 0-.5-.1-.7-.3-.2-.2-.2-.4-.2-.6v-3.3c0-.2.1-.5.2-.6.2-.2.4-.3.7-.3h.1v.6c0 .3.2.6.5.6h.2c.3 0 .5-.3.6-.6v-.6h.1c.3 0 .5.1.7.3.1.2.2.4.2.6v3.3c0 .2-.1.4-.2.6-.2.2-.4.3-.7.3H45v-.6c0-.3-.2-.6-.6-.6h-.2c-.3 0-.6.3-.6.6v.6zm.8 7.4c-1.1 0-1.9-.9-1.9-1.9 0-.8.5-1.6 1.3-1.8v.5c0 .3.3.6.6.6s.6-.3.6-.6V51c.8.3 1.3 1 1.3 1.8 0 1-.9 1.9-1.9 1.9z" fill-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="64" height="16" viewBox="0 0 64 16" xmlns="http://www.w3.org/2000/svg"><title>Arrow Sprites</title><path d="M8.879 14.757L2 7.88 8.879 1m46 0l6.878 6.879-6.878 6.878m-6.122-9.878l-6.878 6.878L35 4.88m-18 6.999L23.879 5l6.878 6.879" stroke-width="2" stroke="#333" fill="none"/></svg>
@@ -0,0 +1 @@
1
+ document.body.classList.toggle("no-js");document.body.classList.toggle("has-js");
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree './compiled'
@@ -0,0 +1 @@
1
+ html{box-sizing:border-box}*,*::after,*::before{box-sizing:inherit}/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:0.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}*,*:before,*:after{box-sizing:border-box}.c-fs{max-width:100%;margin-left:auto;margin-right:auto}.c-fs::after{clear:both;content:"";display:block}.c-fg{max-width:1280px;margin-left:auto;margin-right:auto}.c-fg::after{clear:both;content:"";display:block}.row{display:block}.row::after{clear:both;content:"";display:block}.row--indent-horizontal{display:block;padding-left:12px;padding-right:12px}.row--indent-horizontal::after{clear:both;content:"";display:block}.row--indent-full{display:block;padding-top:12px;padding-bottom:24px;padding-left:12px;padding-right:12px}.row--indent-full::after{clear:both;content:"";display:block}@media screen and (max-width: 767px){.row--indent-full{padding-top:12px}}.block,.highlight__status,.link__button,.list,.list__definition{display:block;margin:0;padding-top:12px;padding-bottom:12px}html{position:relative;min-height:100%}body{margin-bottom:150px;padding:0;background-color:#fff;direction:ltr;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;color:#333}.form-group{margin-bottom:24px}button,input,label,optgroup,select,textarea{font-size:14px;line-height:22px;font-size:.875rem;line-height:1.375rem}form{width:100%}fieldset{border:none;margin:0;padding:0;width:100%}legend{width:1px;padding:0;height:1px;margin:-1px;border:none;overflow:hidden;position:absolute;clip:rect(0 0 0 0)}label{cursor:pointer;display:block;padding-bottom:4px}label .form-hint{color:#9B9B9B;display:block;margin:0;padding-bottom:0}input[type="text"],input[type="password"],textarea{border-width:2px;border-style:solid;border-color:#000;display:block;padding:6px;width:50%}select{border-width:1px;border-style:solid;border-color:#000;padding:4px;width:50%}textarea{padding:6px}button,input[type="reset"],input[type="submit"]{border-width:1px;border-style:solid;border-color:#000;font-weight:600;padding-top:12px;padding-bottom:12px;padding-left:16px;padding-right:16px}@media print{button,input[type="reset"],input[type="submit"],legend{display:none}}a{color:#165FEA;text-decoration:underline}a:hover,a:active,a:focus{color:#165FEA;text-decoration:none}a:visited{color:#5D2EB4}ul,ol{margin:0 0 0 12px;padding:0}li{padding:0;margin:0}li{font-size:14px;line-height:22px;font-size:.875rem;line-height:1.375rem}@media screen and (max-width: 767px){li{font-size:14px;line-height:22px;font-size:.875rem;line-height:1.375rem}}@media screen and (min-width: 960px){li{font-size:16px;line-height:28px;font-size:1rem;line-height:1.75rem}}dl,dt,dd{margin:0;padding:0}dt,dd{font-size:14px;line-height:22px;font-size:.875rem;line-height:1.375rem}@media screen and (max-width: 767px){dt,dd{font-size:14px;line-height:22px;font-size:.875rem;line-height:1.375rem}}@media screen and (min-width: 960px){dt,dd{font-size:16px;line-height:24px;font-size:1rem;line-height:1.5rem}}audio{width:100%}video{height:auto;width:100%}.video-wrap{height:0;padding-bottom:56.25%;padding-top:25px;position:relative}.video-wrap iframe{height:100%;left:0;position:absolute;top:0;width:100%}table{width:100%}th,td{padding-top:8px;padding-right:0;padding-bottom:8px;padding-left:8px}thead th,tfoot td{background-color:#F4F4F4;border-width:1px;border-style:solid;border-color:#C1C1C1;text-align:left}td{border-width:1px;border-style:solid;border-color:#C1C1C1}h1,h2,h3,h4,h5,h6,p{margin:0;padding:0}h1{font-size:34px;line-height:46px;font-size:2.125rem;line-height:2.875rem}h2{font-size:30px;line-height:38px;font-size:1.875rem;line-height:2.375rem}h3{font-size:26px;line-height:34px;font-size:1.625rem;line-height:2.125rem}h4{font-size:22px;line-height:30px;font-size:1.375rem;line-height:1.875rem}p{font-size:14px;line-height:26px;font-size:.875rem;line-height:1.625rem}@media screen and (max-width: 767px){h1{font-size:24px;line-height:36px;font-size:1.5rem;line-height:2.25rem}h2{font-size:20px;line-height:28px;font-size:1.25rem;line-height:1.75rem}h3{font-size:16px;line-height:24px;font-size:1rem;line-height:1.5rem}h4{font-size:16px;line-height:24px;font-size:1rem;line-height:1.5rem}p{font-size:14px;line-height:26px;font-size:.875rem;line-height:1.625rem}}@media screen and (min-width: 960px){h1{font-size:40px;line-height:56px;font-size:2.5rem;line-height:3.5rem}h2{font-size:34px;line-height:42px;font-size:2.125rem;line-height:2.625rem}h3{font-size:28px;line-height:36px;font-size:1.75rem;line-height:2.25rem}h4{font-size:24px;line-height:32px;font-size:1.5rem;line-height:2rem}p{font-size:16px;line-height:28px;font-size:1rem;line-height:1.75rem}}.bordered{margin-bottom:8px;border-bottom-width:4px;border-bottom-style:solid;border-bottom-color:#9B9B9B}.bordered-lords{margin-bottom:8px;border-bottom-width:4px;border-bottom-style:solid;border-bottom-color:#C90D38}.bordered-commons{margin-bottom:8px;border-bottom-width:4px;border-bottom-style:solid;border-bottom-color:#00BA56}#content-slider{margin-bottom:12px;padding-bottom:0;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#C1C1C1}.slider-link{display:block;position:relative;padding-top:12px;padding-bottom:12px;border-top-width:1px;border-top-style:solid;border-top-color:#C1C1C1;color:#333;text-decoration:none}.slider-content{padding-bottom:8px}.slider-content>h3{padding-bottom:12px}.slider-content>p{padding-bottom:12px}.slider-content>ul{margin-left:24px;padding-bottom:12px}.has-js .slider-link{padding-right:48px;color:#165FEA;font-weight:normal;text-decoration:underline;cursor:pointer}.has-js .slider-link:hover,.has-js .slider-link:active,.has-js .slider-link:focus{text-decoration:none}.has-js .slider-link>span.open,.has-js .slider-link>span.close{display:block;position:absolute;top:16px;top:calc(50% - 7px);right:12px;height:14px;width:20px;background:url("../images/sprites-arrows.png");background-image:url("../images/sprites-arrows.svg"),none;background-repeat:no-repeat}.has-js .slider-link>span.open{background-position:75% 50%}.has-js .slider-link>span.close{background-position:33% 50%}.footer{position:absolute;bottom:0;width:100%;height:150px;padding-top:12px;padding-bottom:12px;background-color:#F4F4F4;border-top-width:4px;border-top-style:solid;border-top-color:#9B9B9B}.footer__logo img{display:block;width:118px;height:22px}.footer__list{list-style:none;margin-top:12px;margin-left:0;}.footer__list>li{padding-bottom:4px}.footer__list>li:last-child{padding-bottom:0}@media print{.footer{display:none}}.header{background-color:#333;padding-top:12px;padding-bottom:12px}.header__logo img{display:block;width:268px;height:50px}@media screen and (max-width: 767px){.header__logo img{width:134px;height:25px}}@media print{.header{display:none}}.highlight__box{margin-bottom:12px;padding-top:12px;padding-right:8px;padding-bottom:8px;padding-left:12px;background-color:#F4F4F4;border-left-width:3px;border-left-style:solid;border-left-color:#9B9B9B}.highlight__status{background-color:#165FEA;color:white}.highlight__status a:hover, .highlight__status a:link, .highlight__status a:active,.highlight__status a:focus,.highlight__status a:visited{color:white}.link__button{margin:0;list-style:none}.link__button li{display:block;position:relative;margin-bottom:12px;padding-top:8px;padding-bottom:8px;padding-left:12px;padding-right:12px;border-width:1px;border-style:solid;border-color:#C1C1C1;border-radius:4px}.link__button li a:link{color:#165FEA;text-decoration:underline}.link__button li a:hover,.link__button li a:active,.link__button li a:focus{text-decoration:none}.link__button li span{display:block;position:absolute;top:16px;top:calc(50% - 7px);right:12px;height:14px;width:10px;background:url("../images/sprites-arrows.png");background-image:url("../images/sprites-arrows.svg"),none;background-repeat:no-repeat;background-position:100% 50%}.list{margin:0;list-style:none}.list--item{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#C1C1C1;color:#5C5C5C}.list--item:first-child{border-top-width:1px;border-top-style:solid;border-top-color:#C1C1C1}.list__definition dt{float:left;clear:left;padding-right:8px;font-weight:bold}.list__definition dd{padding-bottom:8px}.navigation__letter{list-style:none;margin-top:12px;margin-left:0}.navigation__letter>li{display:inline-block;width:3.5%;margin:0;padding:0;background-color:#C1C1C1;border-style:solid;border-width:0 3px 3px 0;border-color:white;color:#333;font-weight:bold;text-align:center;text-transform:uppercase}.navigation__letter>li>a{display:block;padding-top:8px;padding-bottom:8px;padding-left:8px;padding-right:8px;color:#000;text-decoration:none}@media screen and (max-width: 767px){.navigation__letter>li{width:13%}}@media screen and (min-width: 768px){.navigation__letter>li{width:10%}}@media screen and (min-width: 960px){.navigation__letter>li{width:3.5%}}.navigation__letter>li.active,.navigation__letter>li:hover{background-color:#333}.navigation__letter>li.active>a,.navigation__letter>li:hover>a{color:#fff}.visually-hidden{visibility:hidden}.sr-only{width:1px;padding:0;height:1px;margin:-1px;border:none;overflow:hidden;position:absolute;clip:rect(0 0 0 0)}.sr-only--focusable:focus,.sr-only--focusable:active{margin:0;clip:auto;width:auto;height:auto;color:#fff;overflow:visible;background-color:#000;padding:8px}
@@ -0,0 +1,16 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree './compiled'
14
+ *= require_tree './overrides'
15
+ *= require_self
16
+ */
@@ -0,0 +1,16 @@
1
+ %ol.list
2
+ - people.each do |person|
3
+ %li.list--item
4
+ %ul.list
5
+ - if person.respond_to?(:full_name) && person.respond_to?(:graph_id)
6
+ %li
7
+ %a{:href => "/people/#{person.graph_id}"}= person.full_name
8
+ - if !person.constituencies.empty?
9
+ - seat_incumbency = person.seat_incumbencies.select(&:current?).first
10
+ %li
11
+ MP for
12
+ %a{:href => "/constituencies/#{seat_incumbency.constituency.graph_id}"}= seat_incumbency.constituency.name
13
+ - if !person.parties.empty?
14
+ - party_membership = person.party_memberships.select(&:current?).first
15
+ %li
16
+ %a{:href => "/parties/#{party_membership.party.graph_id}"}= party_membership.party.name
@@ -0,0 +1,16 @@
1
+ %footer
2
+ .c-fs.footer
3
+ .c-fg
4
+ .row--indent-horizontal
5
+ .footer__logo
6
+ %img{:alt => "parliament.uk", :src => "#{Rails.application.secrets.asset_location_url}/images/parliament-uk--darkgrey.png", :srcset => "#{Rails.application.secrets.asset_location_url}/images/parliament-uk--darkgrey.svg"}/
7
+ %ul.footer__list
8
+ %li
9
+ Parliament.uk
10
+ %a{:href => "https://pds.blog.parliament.uk/", :target => "_blank"} digital blog
11
+ %li
12
+ Visit the
13
+ %a{:href => "https://www.parliament.uk/", :target => "_blank"} current parliament.uk
14
+ website
15
+ %li
16
+ %a{:href => "/meta/cookie-policy"} Cookie Policy
@@ -0,0 +1,7 @@
1
+ %header
2
+ .c-fs.header
3
+ .c-fg
4
+ .row--indent-horizontal
5
+ .header__logo
6
+ %a{:href => "/"}
7
+ %img{:alt => "parliament.uk", :src => "#{Rails.application.secrets.asset_location_url}/images/parliament-uk--white.png", :srcset => "#{Rails.application.secrets.asset_location_url}/images/parliament-uk--white.svg"}/
@@ -0,0 +1,6 @@
1
+ .highlight__status
2
+ %div{class: "c-fs status#{ status.nil? ? '' : "__#{status}" }"}
3
+ .c-fg
4
+ .row--indent-horizontal
5
+ %p This is a #{link_to '<strong>BETA</strong>'.html_safe, '/' }. Give #{link_to 'feedback', 'https://ukparliament-self.achieveservice.com/en/AchieveForms/?form_uri=sandbox-publish://AF-Process-032e1b1d-958f-4402-9ab2-97a38ed9b899/AF-Stage9b7ecae8-0c85-4ee7-afda-b256cffe5f08/definition.json&redirectlink=%2F&cancelRedirectLink=%2F&category=AF-Category-48936b5c-9329-48c7-a0a5-563463aacadf'.html_safe} to improve it.
6
+
@@ -0,0 +1,5 @@
1
+ <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
2
+ new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
3
+ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
4
+ 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
5
+ })(window,document,'script','dataLayer','#{Rails.application.secrets.gtm_key}');</script>
@@ -0,0 +1,2 @@
1
+ <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=#{Rails.application.secrets.gtm_key}"
2
+ height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
@@ -0,0 +1,23 @@
1
+ !!! 5
2
+ %html{lang:'en'}
3
+ %head
4
+ %title Parliamentary Digital Service
5
+ %link{rel: 'stylesheet', href: "#{Rails.application.secrets.asset_location_url}/stylesheets/main.css" }
6
+ %meta{name: 'viewport', content: 'width=device-width, initial-scale=1.0' }
7
+ = favicon_link_tag 'pugin/favicon.ico'
8
+ - if Rails.application.secrets.gtm_key
9
+ = render partial: 'pugin/javascript/google_tag_manager'
10
+ %body
11
+ - if Rails.application.secrets.gtm_key
12
+ = render partial: 'pugin/javascript/google_tag_manager_noscript'
13
+ %main#content
14
+ %a#top
15
+ = render 'pugin/components/header'
16
+ = render partial: 'pugin/components/status', locals: { status: nil }
17
+ .c-fg
18
+ .row--indent-full
19
+ = yield
20
+ .footer-push
21
+ = render 'pugin/components/footer'
22
+ = javascript_include_tag 'pugin/pugin', 'data-turbolinks-track' => true
23
+ -#%script{src: 'http://CDN.com/app.js'}
File without changes
data/config/routes.rb ADDED
@@ -0,0 +1,2 @@
1
+ Pugin::Engine.routes.draw do
2
+ end
data/lib/pugin.rb ADDED
@@ -0,0 +1,5 @@
1
+ require 'pugin/engine'
2
+
3
+ module Pugin
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,17 @@
1
+ module Pugin
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Pugin
4
+
5
+ initializer 'pugin.assets.precompile' do |app|
6
+ app.config.assets.precompile += %w(pugin/pugin.js pugin/pugin.css pugin/*.png pugin/*.jpg pugin/*.jpeg
7
+ pugin/*.gif pugin/*.svg pugin/*.ico)
8
+ end
9
+
10
+ config.generators do |g|
11
+ g.test_framework :rspec, fixture: false
12
+ g.fixture_replacement :factory_girl, dir: 'spec/factories'
13
+ g.assets false
14
+ g.helper false
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,3 @@
1
+ module Pugin
2
+ VERSION = '0.2.0'.freeze
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :pugin do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require_relative 'config/application'
5
+
6
+ Rails.application.load_tasks
@@ -0,0 +1,5 @@
1
+
2
+ //= link_tree ../images
3
+ //= link_directory ../javascripts .js
4
+ //= link_directory ../stylesheets .css
5
+ //= link pugin_manifest.js
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ // Action Cable provides the framework to deal with WebSockets in Rails.
2
+ // You can generate new channels where WebSocket features live using the rails generate channel command.
3
+ //
4
+ //= require action_cable
5
+ //= require_self
6
+ //= require_tree ./channels
7
+
8
+ (function() {
9
+ this.App || (this.App = {});
10
+
11
+ App.cable = ActionCable.createConsumer();
12
+
13
+ }).call(this);
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,4 @@
1
+ module ApplicationCable
2
+ class Channel < ActionCable::Channel::Base
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module ApplicationCable
2
+ class Connection < ActionCable::Connection::Base
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery with: :exception
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end