Инициалиазация репозитория

This commit is contained in:
ada
2025-11-11 08:24:49 +03:00
commit 39f93667fe
114 changed files with 5137 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
.card.border-danger
h1.bg-danger.text-white.card-header=defined?(status) ? status : response.status
.card-body
h1=error
+1
View File
@@ -0,0 +1 @@
=render 'error', error: @error
+19
View File
@@ -0,0 +1,19 @@
doctype html
html
head
title
=t('app_name')
meta[name="viewport" content="width=device-width,initial-scale=1"]
meta name="turbo-refresh-method" content="morph"
= csrf_meta_tags
= csp_meta_tag
/ = favicon_link_tag 'favicon.ico'
/ = favicon_link_tag 'favicon-32x32.png', sizes: '32x32'
/ = favicon_link_tag 'apple-icon.png', rel: 'apple-touch-icon'
= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload"
= stylesheet_link_tag "application", media: "all", "data-turbo-track": "reload"
script[async src="https://ga.jspm.io/npm:es-module-shims@1.8.2/dist/es-module-shims.js" data-turbo-track="reload"]
= javascript_importmap_tags
= hotwire_livereload_tags if Rails.env.development?
body
= yield
+8
View File
@@ -0,0 +1,8 @@
doctype html
html
head
meta content: "text/html; charset=utf-8" http-equiv="Content-Type" /
css:
/!* Email styles need to be inline */
body
= yield
+1
View File
@@ -0,0 +1 @@
= yield
View File