a11yist/app/views/layouts/application.html.slim

27 lines
1.1 KiB
Text
Raw Permalink Normal View History

2024-11-01 13:16:26 +01:00
doctype html
2025-05-16 19:02:33 +02:00
html lang=:de data-bs-theme="#{cookies[:"modeTheme"] || "light"}" data-controller="set-theme"
2024-11-01 13:16:26 +01:00
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
2024-11-09 05:08:46 +01:00
a.visually-hidden href="#main-content" data={ hotkey: "t", controller: "hotkey", turbo: false } Direkt zum Inhalt
2024-11-01 13:16:26 +01:00
= render partial: "layouts/navigation"
.container-fluid
.row
= render partial: "layouts/sidebar"
main.col.ps-md-2.pt-2
2024-11-03 21:58:25 +01:00
#main-content[data-controller="rich-text-link-targets"]
= yield
2024-11-12 23:55:00 +01:00
.toast-container.position-fixed.top-0.end-0.p-3 id="toasts"
2024-11-12 23:55:00 +01:00
- if flash.alert
= render partial: "layouts/toast", locals: { content: flash.alert, alert: true }
- if flash.notice
= render partial: "layouts/toast", locals: { content: flash.notice, alert: false }
= turbo_frame_tag "modal"