├── test ├── dummy │ ├── log │ │ └── .keep │ ├── lib │ │ └── assets │ │ │ └── .keep │ ├── public │ │ ├── favicon.ico │ │ ├── apple-touch-icon.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── 500.html │ │ ├── 422.html │ │ └── 404.html │ ├── app │ │ ├── assets │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── models │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── application_record.rb │ │ ├── controllers │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── application_controller.rb │ │ ├── views │ │ │ └── layouts │ │ │ │ ├── mailer.text.erb │ │ │ │ ├── mailer.html.erb │ │ │ │ └── application.html.erb │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── mailers │ │ │ └── application_mailer.rb │ │ ├── jobs │ │ │ └── application_job.rb │ │ └── javascript │ │ │ └── packs │ │ │ └── application.js │ ├── .ruby-version │ ├── bin │ │ ├── rake │ │ ├── rails │ │ └── setup │ ├── config │ │ ├── routes.rb │ │ ├── spring.rb │ │ ├── environment.rb │ │ ├── initializers │ │ │ ├── mime_types.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── application_controller_renderer.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── assets.rb │ │ │ ├── wrap_parameters.rb │ │ │ ├── inflections.rb │ │ │ └── content_security_policy.rb │ │ ├── cable.yml │ │ ├── boot.rb │ │ ├── application.rb │ │ ├── database.yml │ │ ├── locales │ │ │ └── en.yml │ │ ├── storage.yml │ │ ├── puma.rb │ │ └── environments │ │ │ ├── test.rb │ │ │ ├── development.rb │ │ │ └── production.rb │ ├── config.ru │ └── Rakefile ├── integration │ └── navigation_test.rb ├── polaris │ └── html_test.rb └── test_helper.rb ├── app ├── assets │ ├── images │ │ └── polaris │ │ │ └── html │ │ │ └── .keep │ ├── config │ │ └── polaris_html_manifest.js │ └── stylesheets │ │ └── polaris │ │ └── html │ │ └── application.css ├── components │ ├── titles │ │ ├── heading.html.erb │ │ └── heading.rb │ ├── form │ │ ├── submit.html.erb │ │ ├── tag.rb │ │ ├── submit.rb │ │ ├── password.rb │ │ ├── text_area.rb │ │ ├── select.rb │ │ ├── number.rb │ │ ├── text.rb │ │ ├── checkbox.rb │ │ ├── checkbox_list.rb │ │ ├── tag.html.erb │ │ ├── password.html.erb │ │ ├── number.html.erb │ │ ├── text.html.erb │ │ ├── text_area.html.erb │ │ ├── select.html.erb │ │ ├── checkbox_list.html.erb │ │ └── checkbox.html.erb │ ├── polaris_navigation │ │ ├── footer_help.rb │ │ └── footer_help.html.erb │ ├── polaris_layouts │ │ ├── annotated_section.rb │ │ └── annotated_section.html.erb │ └── actions │ │ ├── button.html.erb │ │ └── button.rb ├── helpers │ └── polaris │ │ └── html │ │ └── application_helper.rb ├── jobs │ └── polaris │ │ └── html │ │ └── application_job.rb ├── models │ └── polaris │ │ └── html │ │ └── application_record.rb ├── controllers │ └── polaris │ │ └── html │ │ └── application_controller.rb ├── mailers │ └── polaris │ │ └── html │ │ └── application_mailer.rb └── views │ └── layouts │ └── polaris │ └── html │ └── application.html.erb ├── config └── routes.rb ├── lib ├── polaris │ ├── html │ │ ├── version.rb │ │ └── engine.rb │ └── html.rb └── tasks │ └── polaris │ └── html_tasks.rake ├── .gitignore ├── bin └── rails ├── Gemfile ├── Rakefile ├── MIT-LICENSE ├── polaris-html.gemspec ├── README.md └── Gemfile.lock /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/polaris/html/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.6.3 2 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | Polaris::Html::Engine.routes.draw do 2 | end 3 | -------------------------------------------------------------------------------- /app/components/titles/heading.html.erb: -------------------------------------------------------------------------------- 1 |
<%= @description %>
7 |If you are the application owner check the logs for more information.
64 |Maybe you tried to change something you didn't have access to.
63 |If you are the application owner check the logs for more information.
65 |You may have mistyped the address or the page may have moved.
63 |If you are the application owner check the logs for more information.
65 |