initial commit hanami
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# auto_register: false
|
||||
# frozen_string_literal: true
|
||||
|
||||
require "hanami/action"
|
||||
|
||||
module EuchreCamp
|
||||
class Action < Hanami::Action
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
body {
|
||||
background-color: #fff;
|
||||
color: #000;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 7.2 KiB |
@@ -0,0 +1 @@
|
||||
import "../css/app.css";
|
||||
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Euchre camp</title>
|
||||
<%= favicon_tag %>
|
||||
<%= stylesheet_tag "app" %>
|
||||
</head>
|
||||
<body>
|
||||
<%= yield %>
|
||||
<%= javascript_tag "app" %>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
# auto_register: false
|
||||
# frozen_string_literal: true
|
||||
|
||||
require "hanami/view"
|
||||
|
||||
module EuchreCamp
|
||||
class View < Hanami::View
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,10 @@
|
||||
# auto_register: false
|
||||
# frozen_string_literal: true
|
||||
|
||||
module EuchreCamp
|
||||
module Views
|
||||
module Helpers
|
||||
# Add your view helpers here
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user