2024-11-01 13:16:26 +01:00
|
|
|
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
|
2024-11-01 13:34:35 +01:00
|
|
|
= stylesheet_link_tag "application", "data-turbo-track": "reload"
|
|
|
|
|
= javascript_include_tag "application", "data-turbo-track": "reload", type: "module"
|
2024-11-01 13:16:26 +01:00
|
|
|
body
|
|
|
|
|
= render partial: "layouts/navigation"
|
|
|
|
|
.container-fluid
|
|
|
|
|
.row
|
|
|
|
|
main.col.ps-md-2.pt-2
|
2024-11-11 07:21:55 +01:00
|
|
|
.container
|
|
|
|
|
#main-content
|
2024-11-11 20:29:28 +01:00
|
|
|
h1.error_heading = "Error #{yield(:code)}"
|
2024-11-11 07:21:55 +01:00
|
|
|
p Deine Anfrage konnte nicht bearbeitet werden.
|
|
|
|
|
- if content_for?(:message)
|
|
|
|
|
p.error_message #{yield(:message)}
|
2024-11-01 13:16:26 +01:00
|
|
|
= yield
|