haml
This commit is contained in:
parent
cfa7590d38
commit
a4e63b3d0c
3
Gemfile
3
Gemfile
@ -13,6 +13,9 @@ gem "bootsnap", require: false
|
||||
gem "sassc-rails"
|
||||
|
||||
gem "net-ssh"
|
||||
|
||||
gem "haml-rails"
|
||||
|
||||
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
|
||||
# gem "image_processing", "~> 1.2"
|
||||
|
||||
|
20
Gemfile.lock
20
Gemfile.lock
@ -89,9 +89,24 @@ GEM
|
||||
reline (>= 0.2.7)
|
||||
digest (3.1.0)
|
||||
erubi (1.10.0)
|
||||
erubis (2.7.0)
|
||||
ffi (1.15.5)
|
||||
globalid (1.0.0)
|
||||
activesupport (>= 5.0)
|
||||
haml (5.2.2)
|
||||
temple (>= 0.8.0)
|
||||
tilt
|
||||
haml-rails (2.0.1)
|
||||
actionpack (>= 5.1)
|
||||
activesupport (>= 5.1)
|
||||
haml (>= 4.0.6, < 6.0)
|
||||
html2haml (>= 1.0.1)
|
||||
railties (>= 5.1)
|
||||
html2haml (2.2.0)
|
||||
erubis (~> 2.7.0)
|
||||
haml (>= 4.0, < 6)
|
||||
nokogiri (>= 1.6.0)
|
||||
ruby_parser (~> 3.5)
|
||||
i18n (1.10.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
importmap-rails (1.0.3)
|
||||
@ -171,6 +186,8 @@ GEM
|
||||
reline (0.3.1)
|
||||
io-console (~> 0.5)
|
||||
rexml (3.2.5)
|
||||
ruby_parser (3.18.1)
|
||||
sexp_processor (~> 4.16)
|
||||
rubyzip (2.3.2)
|
||||
sassc (2.4.0)
|
||||
ffi (~> 1.9)
|
||||
@ -184,6 +201,7 @@ GEM
|
||||
childprocess (>= 0.5, < 5.0)
|
||||
rexml (~> 3.2, >= 3.2.5)
|
||||
rubyzip (>= 1.2.2)
|
||||
sexp_processor (4.16.0)
|
||||
sprockets (4.0.3)
|
||||
concurrent-ruby (~> 1.0)
|
||||
rack (> 1, < 3)
|
||||
@ -195,6 +213,7 @@ GEM
|
||||
stimulus-rails (1.0.4)
|
||||
railties (>= 6.0.0)
|
||||
strscan (3.0.1)
|
||||
temple (0.8.2)
|
||||
thor (1.2.1)
|
||||
tilt (2.0.10)
|
||||
timeout (0.2.0)
|
||||
@ -223,6 +242,7 @@ DEPENDENCIES
|
||||
bootsnap
|
||||
capybara
|
||||
debug
|
||||
haml-rails
|
||||
importmap-rails
|
||||
net-ssh
|
||||
puma (~> 5.0)
|
||||
|
12
app/views/layouts/application.html.haml
Normal file
12
app/views/layouts/application.html.haml
Normal file
@ -0,0 +1,12 @@
|
||||
!!!
|
||||
%html
|
||||
%head
|
||||
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
|
||||
%title Gateway
|
||||
%meta{:content => "width=device-width,initial-scale=1", :name => "viewport"}/
|
||||
= csrf_meta_tags
|
||||
= csp_meta_tag
|
||||
= stylesheet_link_tag "application", "data-turbo-track": "reload"
|
||||
= javascript_importmap_tags
|
||||
%body
|
||||
= yield
|
Loading…
Reference in New Issue
Block a user