a11yist/app/views/layouts/errors.html.slim
david c965e03e5a
Some checks failed
/ Run tests (push) Failing after 1m7s
/ Run system tests (push) Failing after 1m14s
/ Build, push and deploy image (push) Has been skipped
Do not try to inline assets in error pages
2024-11-01 13:34:35 +01:00

20 lines
776 B
Text

doctype html
html data-bs-theme="light" data-controller="set-theme"
head
title a11ydive
meta[name="viewport" content="width=device-width,initial-scale=1"]
= csrf_meta_tags
= csp_meta_tag
= stylesheet_link_tag "application", "data-turbo-track": "reload"
= javascript_include_tag "application", "data-turbo-track": "reload", type: "module"
body
= render partial: "layouts/navigation"
.container-fluid
.row
= render partial: "layouts/sidebar"
main.col.ps-md-2.pt-2
.container-fluid
#main-content[data-controller="rich-text-link-targets"]
= yield
footer.container-fluid.mt-auto.border-top
= Rails.configuration.build_version && "Version: #{Rails.configuration.build_version}"