a11yist/app/views/layouts/errors.html.slim
david aeb9467117
Some checks failed
/ Run tests (push) Successful in 1m32s
/ Run system tests (push) Failing after 1m53s
/ Build, push and deploy image (push) Successful in 1m18s
Try fixing asset pipeline
2024-11-11 20:29:28 +01:00

21 lines
757 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
main.col.ps-md-2.pt-2
.container
#main-content
h1.error_heading = "Error #{yield(:code)}"
p Deine Anfrage konnte nicht bearbeitet werden.
- if content_for?(:message)
p.error_message #{yield(:message)}
= yield