make it a rails app

This commit is contained in:
Torsten Ruger
2018-04-10 18:25:46 +03:00
parent 539b7d9cfe
commit 53c7ab4f40
66 changed files with 1073 additions and 213 deletions

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>RubyxWebpage</title>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
</head>
<body>
<%= yield %>
</body>
</html>

View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
/* Email styles need to be inline */
</style>
</head>
<body>
<%= yield %>
</body>
</html>

View File

@ -0,0 +1 @@
<%= yield %>