diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-28 00:16:07 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-28 00:16:07 -0400 |
commit | b496a29a7de381765f3c45ced9fa18f026b2e314 (patch) | |
tree | 34f6558ffed34b0ec922c90e6407d165e9256b59 /app/views/layouts | |
parent | d09db2d6d0727faba8e5078900f2fbd1e18ea49f (diff) | |
download | wittle-b496a29a7de381765f3c45ced9fa18f026b2e314.tar.gz wittle-b496a29a7de381765f3c45ced9fa18f026b2e314.tar.bz2 wittle-b496a29a7de381765f3c45ced9fa18f026b2e314.zip |
serve
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/wittle/application.html.erb | 15 | ||||
-rw-r--r-- | app/views/layouts/wittle/application.html.haml | 9 |
2 files changed, 9 insertions, 15 deletions
diff --git a/app/views/layouts/wittle/application.html.erb b/app/views/layouts/wittle/application.html.erb deleted file mode 100644 index ba450d1..0000000 --- a/app/views/layouts/wittle/application.html.erb +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <title>Wittle</title> | ||
5 | <%= csrf_meta_tags %> | ||
6 | <%= csp_meta_tag %> | ||
7 | |||
8 | <%= stylesheet_link_tag "wittle/application", media: "all" %> | ||
9 | </head> | ||
10 | <body> | ||
11 | |||
12 | <%= yield %> | ||
13 | |||
14 | </body> | ||
15 | </html> | ||
diff --git a/app/views/layouts/wittle/application.html.haml b/app/views/layouts/wittle/application.html.haml new file mode 100644 index 0000000..945ffc0 --- /dev/null +++ b/app/views/layouts/wittle/application.html.haml | |||
@@ -0,0 +1,9 @@ | |||
1 | !!! 5 | ||
2 | %html | ||
3 | %head | ||
4 | %title Wittle | ||
5 | = csrf_meta_tags | ||
6 | = csp_meta_tag | ||
7 | = stylesheet_link_tag "wittle/application", media: "all" | ||
8 | = javascript_include_tag "wittle/application" | ||
9 | %body= yield | ||